Home
last modified time | relevance | path

Searched refs:assignees (Results 1 – 10 of 10) sorted by relevance

/plugin/acknowledge/
H A Dhelper.php209 * 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 DGoogleCloudSecuritycenterV1ExternalSystem.php26 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 Dnotify.php36 // 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 Dassign.php36 $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 DUtilities.php142 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 DPluginDo.js128 buildTitle: function ($applyto, assignees, due, closedby, closedon) { argument
132 if (!assignees || !assignees.length) {
138 assignees = [];
140 assignees.push(PluginDo.stripTags(jQuery(assignee).html()));
143 if (assignees.length > 0) {
158 var newTitle = PluginDo.getLang('title' + titelNo, assignees.join(', '), due);
/plugin/acknowledge/db/
H A Dupdate0003.sql16 assignees TEXT NOT NULL field
/plugin/asana/remote/
H A DAPILink.php39 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 Dassign.txt11 Assignes are defined either by username or ''@'' prefixed group name. Multiple assignees are separated by commas '',''.
/plugin/gitlabapi/
H A Dsyntax.php225 $assignees = $issues[$i]['assignees'];
227 foreach ($assignees as $a)