コード例 #1
0
ファイル: ContactEntry.php プロジェクト: Anthony2909/midocu
 /**
  * Constructs a new Contact Entry object, to represent
  * an individual contact for a user
  *
  * @param DOMElement $element (optional) DOMElement from which this
  *          object should be constructed.
  */
 public function __construct($element = null)
 {
     foreach (Zend_Gdata_YouTube::$namespaces as $nsPrefix => $nsUri) {
         $this->registerNamespace($nsPrefix, $nsUri);
     }
     parent::__construct($element);
 }
コード例 #2
0
ファイル: ContactEntry.php プロジェクト: ronseigel/agent-ohm
 /**
  * Constructs a new Contact Entry object, to represent
  * an individual contact for a user
  *
  * @param DOMElement $element (optional) DOMElement from which this
  *          object should be constructed.
  */
 public function __construct($element = null)
 {
     $this->registerAllNamespaces(Zend_Gdata_YouTube::$namespaces);
     parent::__construct($element);
 }