本文整理汇总了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;
}
示例2: __construct
public function __construct($text = null, $uri = null, $version = null)
{
parent::__construct();
$this->_text = $text;
$this->_uri = $uri;
$this->_version = $version;
}
示例3: __construct
public function __construct($name = null, $email = null, $uri = null)
{
parent::__construct();
$this->_name = $name;
$this->_email = $email;
$this->_uri = $uri;
}
示例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;
}
示例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;
}
示例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();
}
示例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;
}
示例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();
}
示例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;
}
示例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;
}
示例11: __construct
public function __construct($text = null)
{
parent::__construct();
$this->_text = $text;
}
示例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;
}
示例13: __construct
public function __construct($draft = null)
{
parent::__construct();
$this->_draft = $draft;
}
示例14: __construct
public function __construct($text = null, $type = 'text')
{
parent::__construct();
$this->_text = $text;
$this->_type = $type;
}