Home
last modified time | relevance | path

Searched refs:action (Results 26 – 50 of 794) sorted by last modified time

12345678910>>...32

/plugin/batchedit/
H A Dinterface.php316 $action = '<a class="be-action" href="' . $href . '" title="' . $this->getLang($titleId) . '">';
317 $action .= $this->getSvg($iconId);
318 $action .= '</a>';
320 print($action);
H A Dinterface.css46 #batchedit .be-action svg {
53 #batchedit .be-action svg:hover {
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe6063 Ġre action
8357 Ġtrans action
10121 Ġinter action
14422 Ġsatisf action
31284 action Date
39658 ĠRe action
41139 Ġdissatisf action
41298 ĠF action
44122 Ġin action
45135 ĠTrans action
[all...]
/plugin/bez/cron/
H A Dfunctions.php3 $action = new action_plugin_bez_base(); variable
4 $action->createObjects(true);
7 global $action;
9 $threads = $action->get_model()->threadFactory->get_all(array(
25 global $action;
29 $days_before = $action->getConf('task_remaind_days_before');
41 $tasks = $action->get_model()->taskFactory->get_all($filters);
51 global $action;
59 $threads = $action->get_model()->threadFactory->get_all(array(
76 $tasks = $action
[all...]
/plugin/bez/ctl/
H A Dthreads.php10 define('BEZ_THREAD_FILTERS_COOKIE_NAME', 'plugin__bez_thread_filters_' . $this->tpl->action());
/plugin/bez/mdl/
H A DModel.php28 protected $dw_auth, $user_nick, $action, $conf;
60 in_array($property, array('sqlite', 'db', 'acl', 'dw_auth', 'user_nick', 'action', 'conf'))) {
81 public function __construct($dw_auth, $user_nick, $action, $skip_acl=false) { argument
84 $this->action = $action;
85 $this->conf = $action->getGlobalConf();
92 $busy_timeout = 1000 * (int)$this->action->getConf('busy_timeout');
127 $page_id = $this->action->id();
H A DTask.php517 $tpl = $this->model->action->get_tpl();
535 $tpl = $this->model->action->get_tpl();
550 $task_box = $this->model->action->bez_tpl_include('task_box', true);
558 $tpl = $this->model->action->get_tpl();
562 $content = $this->model->action->bez_tpl_include('mail/task', true);
568 $tpl = $this->model->action->get_tpl();
572 $tpl->set('action', 'mail_task_assignee');
579 $tpl = $this->model->action->get_tpl();
583 $tpl->set('action', 'mail_task_remind');
592 $tpl = $this->model->action
601 mail_notify_change_state($action = '') global() argument
[all...]
H A DTask_comment.php76 $tpl = $this->model->action->get_tpl();
86 $tpl = $this->model->action->get_tpl();
93 $tpl->set('action', 'mail_task_comment_added');
94 $content = $this->model->action->bez_tpl_include('mail/task_comment', true);
H A DThread.php457 $tpl = $this->model->action->get_tpl();
471 $tpl = $this->model->action->get_tpl();
486 $thread_box = $this->model->action->bez_tpl_include('thread_box', true);
494 $tpl = $this->model->action->get_tpl();
499 $content = $this->model->action->bez_tpl_include('mail/thread', true);
504 public function mail_notify_change_state($action='') {
505 if (!$action) {
506 $action = 'mail_mail_notify_change_state_action';
508 $tpl = $this->model->action->get_tpl();
511 $tpl->set('action',
503 mail_notify_change_state($action = '') global() argument
[all...]
H A DThread_comment.php107 $tpl = $this->model->action->get_tpl();
116 $tpl = $this->model->action->get_tpl();
124 $action = 'mail_comment_added';
126 $action = 'mail_cause_added';
130 $tpl->set('action', $action);
131 $content = $this->model->action->bez_tpl_include('mail/thread_comment', true);
H A DUserFactory.php25 $groups_s = $this->model->action->getConf('hidden_groups');
/plugin/bez/meta/
H A DTpl.php10 private $action; variable in dokuwiki\\plugin\\bez\\meta\\Tpl
19 public function __construct(\action_plugin_bez_base $action) { argument
21 $this->action = $action;
22 $this->conf = $action->getGlobalConf();
27 $info = $action->getInfo();
33 $this->set('users', $this->action->get_model()->userFactory->get_all());
34 $this->set('groups', $this->action->get_model()->userFactory->get_groups());
37 public function action($default=null) { function in dokuwiki\\plugin\\bez\\meta\\Tpl
38 $action
[all...]
/plugin/bez/syntax/
H A Dnav.php42 /** @var bez\meta\BEZ_DokuWiki_Action_Plugin $action */
51 foreach ($actions as $action => $label) {
52 $r->doc .= $this->_list($bez_action, $action, $label);
58 protected function _list(action_plugin_bez_base $bez_action, $action, $label) { argument
69 if ($cur_action == $action) $ret .= '<strong>';
70 $ret .= '<a href="' . $bez_action->url($action) . '">' . $label . '</a>';
71 if ($cur_action == $action) $ret .= '</strong>';
/plugin/bez/tpl/
H A Dtask_box.php89 <?php if ($tpl->action() == 'thread'): ?>
101 action="<?php echo $tpl->url('task', 'tid', $tpl->get('task')->id, 'action', 'pin') ?>"
119 href="<?php echo $tpl->url('task', 'tid', $tpl->get('task')->id, 'action', 'unpin') ?>"
144 if ($tpl->action() == 'thread') {
145 echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'tid', $tpl->get('task')->id, 'action', 'task_edit');
147 echo $tpl->url('task', 'tid', $tpl->get('task')->id, 'action', 'task_edit');
157 if ($tpl->action() == 'thread') {
158 echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'tid', $tpl->get('task')->id, 'action', 'task_delete');
160 echo $tpl->url('task', 'tid', $tpl->get('task')->id, 'action', 'task_delet
[all...]
H A Dtask_form.php3 if ($tpl->action() == 'thread') {
4 $url = $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', $tpl->param('action', 'add'), 'tid', $tpl->param('tid'), 'kid', $tpl->param('kid'));
6 } elseif ($tpl->action() == 'task_form') {
7 $url = $tpl->url('task_form', 'action', $tpl->param('action', 'add'), 'tid', $tpl->param('tid'));
10 $url = $tpl->url('task', 'action', $tpl->param('action', 'add'), 'tid', $tpl->param('tid'));
16 action="<?php echo $url ?>" method="POST">
177 if ($tpl->action()
[all...]
H A Dthreads.php6 <a href="<?php echo $tpl->url('thread_report', 'type', $tpl->action() == 'projects' ? 'project' : 'issue') ?>" class="bez_start_button" id="bez_report_issue_button">
7 <?php echo $tpl->getLang('report_' . $tpl->action()) ?>
14 <form action="<?php echo $tpl->url($tpl->action()) ?>" method="post">
46 <?php if ($tpl->action() != 'projects'): ?>
106 <?php if ($tpl->action() != 'projects'): ?>
127 <?php if ($tpl->action() != 'projects'): ?>
137 <?php if ($tpl->action() != 'projects'): ?>
173 <?php if ($tpl->action() != 'projects'): ?>
217 <?php if ($tpl->action() !
[all...]
/plugin/bez/action/
H A Ddefault.php11 protected $action = ''; variable in action_plugin_bez_default
19 return $this->action;
167 $this->action = array_shift($ex);
203 if ($this->action !== '') {
214 if ($this->action === '') {
222 $ctl = DOKU_PLUGIN."bez/ctl/".str_replace('/', '', $this->action).".php";
260 if ($this->action === '') {
/plugin/bez/
H A Dcli.php19 $action = new action_plugin_bez_base();
20 $action->createObjects(true);
22 $threads = $action->get_model()->threadFactory->get_all();
25 $action->get_model()->threadFactory->save($thread);
29 $thread_comments = $action->get_model()->thread_commentFactory->get_all();
32 $action->get_model()->thread_commentFactory->save($thread_comment);
37 $tasks = $action->get_model()->taskFactory->get_all();
40 $action->get_model()->taskFactory->save($task);
45 $task_comments = $action->get_model()->task_commentFactory->get_all();
48 $action
[all...]
/plugin/tagging/script/
H A Dadmin.js13 * Trigger a backend action via AJAX and refresh page on success
54 if (actionData.action === 'delete') {
56 } else if (actionData.action === 'rename') {
110 * Injects dialog contents that match the triggered action
117 if (actionData.action === 'delete') {
120 } else if (actionData.action === 'rename') {
/plugin/confmanager/
H A Djquery.form.js73 var method, action, url, $form = this;
80 action = this.attr('action');
81 url = (typeof action === 'string') ? $.trim(action) : '';
/plugin/oauthazure/
H A DAzure.php48 $plugin = plugin_load('action', 'oauthazure');
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js51064 function FlateWorker(action, options) {
51065 GenericWorker.call(this, "FlateWorker/" + action);
51067 this._pakoAction = action;
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js343 function FlateWorker(action, options) { argument
344 GenericWorker.call(this, "FlateWorker/" + action);
347 this._pakoAction = action;
/plugin/gallery/swipebox/js/
H A Djquery.swipebox.js
/plugin/gallery/
H A DGalleryNode.php36 /** @var \action_plugin_gallery_prosemirror $action */
37 $action = plugin_load('action', 'gallery_prosemirror');
38 $defaults = $action->getDefaults();

12345678910>>...32