/plugin/acknowledge/ |
H A D | helper.php | 209 * Set assignees for a given page as manually specified 212 * @param string $assignees 215 public function setPageAssignees($page, $assignees) 217 $assignees = implode(',', array_unique(array_filter(array_map('trim', explode(',', $assignees))))); 220 $this->db->exec($sql, [$page, $assignees]); 224 * Set assignees for a given page from the patterns 231 // given assignees 232 $assignees = ''; 234 // find all patterns that match the page and add the configured assignees 190 setPageAssignees($page, $assignees) global() argument [all...] |
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SecurityCommandCenter/ |
H A D | GoogleCloudSecuritycenterV1ExternalSystem.php | 26 public $assignees; variable in Google\\Service\\SecurityCommandCenter\\GoogleCloudSecuritycenterV1ExternalSystem 47 public function setAssignees($assignees) argument 49 $this->assignees = $assignees; 56 return $this->assignees;
|
/plugin/structpublish/helper/ |
H A D | notify.php | 36 // get assignees from DB 38 $assignees = $assignments->getPageAssignments($newRevision->getId(), false); 46 if (empty($assignees[$nextAction])) { 52 $assignees = implode(',', array_values($assignees[$nextAction])); 53 $assignees = explode(',', $assignees); 56 $recipients = $this->resolveRecipients($assignees);
|
/plugin/acknowledge/admin/ |
H A D | assign.php | 36 $assignees = $INPUT->arr('assignees'); 37 $patterns = array_combine($pattern, $assignees); 63 $form->addHTML($this->getLang('assignees')); 66 foreach ($assignments as $pattern => $assignees) { 67 $this->addRow($form, $pattern, $assignees); 91 $form->addTextInput("assignees[$row]")->val($assignee);
|
/plugin/structtasks/meta/ |
H A D | Utilities.php | 142 function assigneesToEmails($assignees) { argument 143 if (!is_array($assignees)) { 144 $assignees = [$assignees]; 146 return array_values(array_filter(array_map([$this, 'getUserEmail'], $assignees)));
|
/plugin/do/scripts/ |
H A D | PluginDo.js | 122 * @param {Array} assignees assignees for the task, undefined for autodetect 128 buildTitle: function ($applyto, assignees, due, closedby, closedon) { argument 131 // determine assignees 132 if (!assignees || !assignees.length) { 133 //take the assignees of the first task or table row when tasks are duplicated 138 assignees = []; 140 assignees.push(PluginDo.stripTags(jQuery(assignee).html())); 143 if (assignees [all...] |
/plugin/acknowledge/db/ |
H A D | update0003.sql | 16 assignees TEXT NOT NULL field
|
/plugin/asana/remote/ |
H A D | APILink.php | 39 var $assignees = array(); variable in remote_plugin_asana_APILink 126 $this->assignees = $this->workspace_users($this->workspace_filter['id']); 318 foreach($this->assignees as $assignee_key => $assignee_value){ 346 $this->assignees = $this->workspace_users($this->workspace_filter['id']);
|
/plugin/acknowledge/lang/en/ |
H A D | assign.txt | 11 Assignes are defined either by username or ''@'' prefixed group name. Multiple assignees are separated by commas '',''.
|
/plugin/gitlabapi/ |
H A D | syntax.php | 246 $assignees = $issues[$i]['assignees']; 248 foreach ($assignees as $a) {
|