Ejemplo n.º 1
0
 function __construct($profile, $peopletag, $action)
 {
     parent::__construct($profile, $action);
     $this->peopletag = $peopletag;
 }
Ejemplo n.º 2
0
 function __construct($profile, $terms, $action)
 {
     parent::__construct($profile, $action);
     $this->terms = array_map('preg_quote', array_map('htmlspecialchars', $terms));
     $this->pattern = '/(' . implode('|', $terms) . ')/i';
 }
Ejemplo n.º 3
0
 function __construct($profile, $group, $action)
 {
     parent::__construct($profile, $action);
     $this->group = $group;
 }
Ejemplo n.º 4
0
 function __construct($profile, $owner = null, $action = null)
 {
     parent::__construct($profile, $action);
     $this->owner = $owner;
 }