コード例 #1
0
ファイル: Category.php プロジェクト: omusico/sugar_work
 public function __construct($term = null, $scheme = null, $label = null)
 {
     parent::__construct();
     $this->_term = $term;
     $this->_scheme = $scheme;
     $this->_label = $label;
 }
コード例 #2
0
 public function __construct($text = null, $uri = null, $version = null)
 {
     parent::__construct();
     $this->_text = $text;
     $this->_uri = $uri;
     $this->_version = $version;
 }
コード例 #3
0
ファイル: Person.php プロジェクト: fredcido/simuweb
 public function __construct($name = null, $email = null, $uri = null)
 {
     parent::__construct();
     $this->_name = $name;
     $this->_email = $email;
     $this->_uri = $uri;
 }
コード例 #4
0
ファイル: WebContent.php プロジェクト: SalesOneGit/s1_magento
 /**
  * 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
0
ファイル: Element.php プロジェクト: dalinhuang/popo
 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
0
ファイル: Extension.php プロジェクト: hackingman/TubeX
 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
0
ファイル: Token.php プロジェクト: omusico/sugar_work
 /**
  * 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
0
 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
0
ファイル: Link.php プロジェクト: Yaoming9/Projet-Web-PhP
 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
0
ファイル: WebContent.php プロジェクト: dalinhuang/popo
 /**
  * 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
0
 public function __construct($text = null)
 {
     parent::__construct();
     $this->_text = $text;
 }
コード例 #12
0
 /**
  * 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
0
ファイル: Control.php プロジェクト: vojtajina/sitellite
 public function __construct($draft = null)
 {
     parent::__construct();
     $this->_draft = $draft;
 }
コード例 #14
0
 public function __construct($text = null, $type = 'text')
 {
     parent::__construct();
     $this->_text = $text;
     $this->_type = $type;
 }