Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Service/Yahoo/LocalResult.php
Go to the documentation of this file.
00001 <?php
00002 
00028 require_once 'Zend/Service/Yahoo/Result.php';
00029 
00030 
00038 class Zend_Service_Yahoo_LocalResult extends Zend_Service_Yahoo_Result
00039 {
00045     public $Address;
00046 
00052     public $City;
00053 
00059     public $State;
00060 
00066     public $Phone;
00067 
00073     public $Rating;
00074 
00080     public $Distance;
00081 
00087     public $MapUrl;
00088 
00094     public $BusinessUrl;
00095 
00101     public $BusinessClickUrl;
00102 
00108     protected $_namespace = 'urn:yahoo:lcl';
00109 
00110 
00117     public function __construct(DOMElement $result)
00118     {
00119         $this->_fields = array('Address','City', 'City', 'State', 'Phone', 'Rating', 'Distance', 'MapUrl',
00120                                'BusinessUrl', 'BusinessClickUrl');
00121 
00122         parent::__construct($result);
00123     }
00124 }
 All Data Structures Namespaces Files Functions Variables Enumerations