Exemple #1
0
 public function __construct(\field_ident $id_role, \field_string $name, \field_numeric $permissions)
 {
     parent::__construct();
     $this->id_role = $id_role;
     $this->name = $name;
     $this->permissions = $permissions;
 }
Exemple #2
0
 public function __construct(\field_ident $id_category_post, \field_foreignkey $id_category, \field_foreignkey $id_post)
 {
     parent::__construct();
     $this->id_category_post = $id_category_post;
     $this->id_category = $id_category;
     $this->id_post = $id_post;
 }
Exemple #3
0
 public function __construct(\field_ident $id_tag_post, \field_foreignkey $id_tag, \field_foreignkey $id_post)
 {
     parent::__construct();
     $this->id_tag_post = $id_tag_post;
     $this->id_tag = $id_tag;
     $this->id_post = $id_post;
 }
Exemple #4
0
 public function __construct(\field_ident $id_tag, \field_string $name, \field_url_rewriting $url)
 {
     parent::__construct();
     $this->id_tag = $id_tag;
     $this->name = $name;
     $this->url = $url;
 }
Exemple #5
0
 public function __construct(\field_ident $id_category, \field_string $name, \field_foreignkey $id_parent, \field_url_rewriting $url, \field_textarea $description)
 {
     parent::__construct();
     $this->id_category = $id_category;
     $this->name = $name;
     $this->id_parent = $id_parent;
     $this->url = $url;
     $this->description = $description;
 }
Exemple #6
0
 public function __construct(\field_ident $id_user, \field_string $pseudo, \field_mail $mail, \field_password $pass, \field_date $registration, \field_boolean $state, \field_foreignkey $id_role)
 {
     parent::__construct();
     $this->id_user = $id_user;
     $this->pseudo = $pseudo;
     $this->mail = $mail;
     $this->pass = $pass;
     $this->registration = $registration;
     $this->state = $state;
     $this->id_role = $id_role;
 }
Exemple #7
0
 public function __construct(\field_ident $id_comment, \field_foreignkey $id_post, \field_string $author, \field_string $author_url, \field_mail $author_email, \field_textarea $content, \field_state $status, \field_user $id_user, \field_foreignkey $id_parent, \field_state $type, \field_ip $author_ip, \field_date $date)
 {
     parent::__construct();
     $this->id_comment = $id_comment;
     $this->id_post = $id_post;
     $this->author = $author;
     $this->author_url = $author_url;
     $this->author_email = $author_email;
     $this->content = $content;
     $this->status = $status;
     $this->id_user = $id_user;
     $this->id_parent = $id_parent;
     $this->type = $type;
     $this->author_ip = $author_ip;
     $this->date = $date;
 }
Exemple #8
0
 public function __construct(\field_ident $id_post, \field_textarea $title, \field_url_rewriting $url, \field_wysiwyg $content, \field_textarea $excerpt, \field_publication $publicationGMT, \field_user $author, \field_formasso $tag, \field_formasso $category, \field_boolean $has_comment, \field_boolean $ping_status, \field_boolean $is_sticky)
 {
     parent::__construct();
     $this->id_post = $id_post;
     $this->title = $title;
     $this->url = $url;
     $this->content = $content;
     $this->excerpt = $excerpt;
     $this->publicationGMT = $publicationGMT;
     $this->author = $author;
     $this->tag = $tag;
     $this->category = $category;
     $this->has_comment = $has_comment;
     $this->ping_status = $ping_status;
     $this->is_sticky = $is_sticky;
 }