Esempio n. 1
0
 public function __construct($name = null, $email = null, $uri = null)
 {
     parent::__construct();
     $this->_name = $name;
     $this->_email = $email;
     $this->_uri = $uri;
 }
Esempio n. 2
0
 public function __construct($text = null, $uri = null, $version = null)
 {
     parent::__construct();
     $this->_text = $text;
     $this->_uri = $uri;
     $this->_version = $version;
 }
Esempio n. 3
0
 public function __construct($term = null, $scheme = null, $label = null)
 {
     parent::__construct();
     $this->_term = $term;
     $this->_scheme = $scheme;
     $this->_label = $label;
 }
Esempio n. 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;
 }
Esempio n. 5
0
 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;
 }
Esempio n. 6
0
 public function __construct($draft = null)
 {
     parent::__construct();
     $this->_draft = $draft;
 }
Esempio n. 7
0
 public function __construct($text = null)
 {
     parent::__construct();
     $this->_text = $text;
 }
Esempio n. 8
0
 public function __construct($text = null, $type = 'text')
 {
     parent::__construct();
     $this->_text = $text;
     $this->_type = $type;
 }