当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Gdata_App_Extension::__construct方法代码示例

本文整理汇总了PHP中Zend_Gdata_App_Extension::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Gdata_App_Extension::__construct方法的具体用法?PHP Zend_Gdata_App_Extension::__construct怎么用?PHP Zend_Gdata_App_Extension::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_Gdata_App_Extension的用法示例。


在下文中一共展示了Zend_Gdata_App_Extension::__construct方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($term = null, $scheme = null, $label = null)
 {
     parent::__construct();
     $this->_term = $term;
     $this->_scheme = $scheme;
     $this->_label = $label;
 }
开发者ID:omusico,项目名称:sugar_work,代码行数:7,代码来源:Category.php

示例2: __construct

 public function __construct($text = null, $uri = null, $version = null)
 {
     parent::__construct();
     $this->_text = $text;
     $this->_uri = $uri;
     $this->_version = $version;
 }
开发者ID:chucky515,项目名称:Magento-CE-Mirror,代码行数:7,代码来源:Generator.php

示例3: __construct

 public function __construct($name = null, $email = null, $uri = null)
 {
     parent::__construct();
     $this->_name = $name;
     $this->_email = $email;
     $this->_uri = $uri;
 }
开发者ID:fredcido,项目名称:simuweb,代码行数:7,代码来源:Person.php

示例4: __construct

 /**
  * Constructs a new Zend_Gdata_Calendar_Extension_WebContent object.
  * @param string $url (optional) The value for this element's URL attribute.
  * @param string $height (optional) The value for this element's height attribute.
  * @param string $width (optional) The value for this element's width attribute.
  */
 public function __construct($url = null, $height = null, $width = null)
 {
     $this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
     parent::__construct();
     $this->_url = $url;
     $this->_height = $height;
     $this->_width = $width;
 }
开发者ID:SalesOneGit,项目名称:s1_magento,代码行数:14,代码来源:WebContent.php

示例5: __construct

 public function __construct($rootElement = null, $rootNamespace = null, $rootNamespaceURI = null, $text = null)
 {
     parent::__construct();
     $this->_rootElement = $rootElement;
     $this->_rootNamespace = $rootNamespace;
     $this->_rootNamespaceURI = $rootNamespaceURI;
     $this->_text = $text;
 }
开发者ID:dalinhuang,项目名称:popo,代码行数:8,代码来源:Element.php

示例6: __construct

 public function __construct()
 {
     $this->registerNamespace('gd', 'http://schemas.google.com/g/2005');
     $this->registerNamespace('openSearch', 'http://a9.com/-/spec/opensearchrss/1.0/', 1, 0);
     $this->registerNamespace('openSearch', 'http://a9.com/-/spec/opensearch/1.1/', 2, 0);
     $this->registerNamespace('rss', 'http://blogs.law.harvard.edu/tech/rss');
     parent::__construct();
 }
开发者ID:hackingman,项目名称:TubeX,代码行数:8,代码来源:Extension.php

示例7: __construct

 /**
  * Constructs a new Zend_Gdata_YouTube_Extension_Token object.
  */
 public function __construct($text = null)
 {
     foreach (Zend_Gdata_YouTube::$namespaces as $nsPrefix => $nsUri) {
         $this->registerNamespace($nsPrefix, $nsUri);
     }
     parent::__construct();
     $this->_text = $text;
 }
开发者ID:omusico,项目名称:sugar_work,代码行数:11,代码来源:Token.php

示例8: __construct

 public function __construct()
 {
     /* NOTE: namespaces must be registered before calling parent */
     $this->registerNamespace('openSearch', 'http://a9.com/-/spec/opensearchrss/1.0/');
     $this->registerNamespace('rss', 'http://blogs.law.harvard.edu/tech/rss');
     $this->registerNamespace('gd', 'http://schemas.google.com/g/2005');
     parent::__construct();
 }
开发者ID:jorgenils,项目名称:zend-framework,代码行数:8,代码来源:Extension.php

示例9: __construct

 public function __construct($href = null, $rel = null, $type = null, $hrefLang = null, $title = null, $length = null)
 {
     parent::__construct();
     $this->_href = $href;
     $this->_rel = $rel;
     $this->_type = $type;
     $this->_hrefLang = $hrefLang;
     $this->_title = $title;
     $this->_length = $length;
 }
开发者ID:Yaoming9,项目名称:Projet-Web-PhP,代码行数:10,代码来源:Link.php

示例10: __construct

 /**
  * Constructs a new Zend_Gdata_Calendar_Extension_WebContent object.
  * @param string $url (optional) The value for this element's URL attribute.
  * @param string $height (optional) The value for this element's height attribute.
  * @param string $width (optional) The value for this element's width attribute.
  */
 public function __construct($url = null, $height = null, $width = null)
 {
     foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
         $this->registerNamespace($nsPrefix, $nsUri);
     }
     parent::__construct();
     $this->_url = $url;
     $this->_height = $height;
     $this->_width = $width;
 }
开发者ID:dalinhuang,项目名称:popo,代码行数:16,代码来源:WebContent.php

示例11: __construct

 public function __construct($text = null)
 {
     parent::__construct();
     $this->_text = $text;
 }
开发者ID:janaece,项目名称:globalclassroom4_clean,代码行数:5,代码来源:Email.php

示例12: __construct

 /**
  * Constructs a new Zend_Gdata_YouTube_Extension_Token object.
  */
 public function __construct($text = null)
 {
     $this->registerAllNamespaces(Zend_Gdata_YouTube::$namespaces);
     parent::__construct();
     $this->_text = $text;
 }
开发者ID:crodriguezn,项目名称:crossfit-milagro,代码行数:9,代码来源:Token.php

示例13: __construct

 public function __construct($draft = null)
 {
     parent::__construct();
     $this->_draft = $draft;
 }
开发者ID:vojtajina,项目名称:sitellite,代码行数:5,代码来源:Control.php

示例14: __construct

 public function __construct($text = null, $type = 'text')
 {
     parent::__construct();
     $this->_text = $text;
     $this->_type = $type;
 }
开发者ID:beingsane,项目名称:Zend_Framework_for_Joomla,代码行数:6,代码来源:Text.php


注:本文中的Zend_Gdata_App_Extension::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。