예제 #1
0
파일: Generator.php 프로젝트: rexmac/zf2
 public function __construct($text = null, $uri = null, $version = null)
 {
     parent::__construct();
     $this->_text = $text;
     $this->_uri = $uri;
     $this->_version = $version;
 }
예제 #2
0
 public function __construct($term = null, $scheme = null, $label = null)
 {
     parent::__construct();
     $this->_term = $term;
     $this->_scheme = $scheme;
     $this->_label = $label;
 }
예제 #3
0
 public function __construct($name = null, $email = null, $uri = null)
 {
     parent::__construct();
     $this->_name = $name;
     $this->_email = $email;
     $this->_uri = $uri;
 }
예제 #4
0
 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;
 }
예제 #5
0
 /**
  * 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;
 }
예제 #6
0
파일: Link.php 프로젝트: rafalwrzeszcz/zf2
 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;
 }
예제 #7
0
파일: Name.php 프로젝트: rafalwrzeszcz/zf2
 public function __construct($text = null)
 {
     parent::__construct();
     $this->_text = $text;
 }
예제 #8
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;
 }
예제 #9
0
파일: Control.php 프로젝트: alab1001101/zf2
 public function __construct($draft = null)
 {
     parent::__construct();
     $this->_draft = $draft;
 }
예제 #10
0
파일: Text.php 프로젝트: rexmac/zf2
 public function __construct($text = null, $type = 'text')
 {
     parent::__construct();
     $this->_text = $text;
     $this->_type = $type;
 }