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