Home
last modified time | relevance | path

Searched refs:model (Results 26 – 50 of 272) sorted by relevance

1234567891011

/plugin/bez/mdl/
H A DThread_comment.php31 $this->thread = $this->model->threadFactory->get_one($this->thread_id);
42 public function __construct($model, $defaults=array()) { argument
43 parent::__construct($model, $defaults);
55 $this->author = $this->model->user_nick;
68 if ($this->coordinator == $this->model->user_nick) {
78 if ($this->author == $this->model->user_nick && $this->type == 'comment') {
86 if ($this->coordinator == $this->model->user_nick) {
107 $tpl = $this->model->action->get_tpl();
116 $tpl = $this->model->action->get_tpl();
131 $content = $this->model
[all...]
H A DTaskFactory.php12 $r = $this->model->sqlite->query('SELECT
19 $data = $this->model->sqlite->res_fetch_array($r);
36 $tasks = $this->model->taskFactory->get_all(array('thread_id' => $thread->id),
60 $stmt = $this->model->sqlite->query($sql, $thread->id);
90 $r = $this->model->sqlite->query($sql, $from, $to);
99 $r = $this->model->sqlite->query($sql);
125 $r = $this->model->sqlite->query($sql, $from, $to);
141 $r = $this->model->sqlite->query($sql);
163 if ($this->model->user_nick != $task->assignee) {
186 if ($this->model
[all...]
H A DEntity.php19 protected $model; variable in dokuwiki\\plugin\\bez\\mdl\\Entity
133 public function __construct($model) { argument
134 $this->model = $model;
135 $this->validator = new Validator($this->model);
137 $this->acl = new Acl($this->model->get_level(), $this->get_acl_columns());
179 unset($users[$this->model->user_nick]);
182 $muted_users = $this->model->factory('subscription')->getMutedUsers();
190 $email = $this->model->userFactory->get_user_email($user);
194 $name = $this->model
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudVideoIntelligence/
H A DGoogleCloudVideointelligenceV1TextDetectionConfig.php30 public $model; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1TextDetectionConfig
49 public function setModel($model) argument
51 $this->model = $model;
58 return $this->model;
H A DGoogleCloudVideointelligenceV1FaceDetectionConfig.php33 public $model; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1FaceDetectionConfig
66 public function setModel($model) argument
68 $this->model = $model;
75 return $this->model;
H A DGoogleCloudVideointelligenceV1LabelDetectionConfig.php33 public $model; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1LabelDetectionConfig
74 public function setModel($model) argument
76 $this->model = $model;
83 return $this->model;
/plugin/bez/ctl/
H A Dthread_report.php5 if ($this->model->get_level() < BEZ_AUTH_USER) {
13 $thread = $this->model->threadFactory->get_one($thread_id);
15 $thread = $this->model->threadFactory->create_object();
27 $this->model->threadFactory->update_save($thread, $_POST);
33 // if ($this->model->acl->get_level() >= BEZ_AUTH_LEADER) {
37 // $thread = $this->model->threadFactory->create_object($defaults);
39 $this->model->threadFactory->initial_save($thread, $_POST);
45 $this->tpl->set('labels', $this->model->labelFactory->get_all())
H A Dtypes.php6 if ($this->model->get_level() < BEZ_AUTH_ADMIN) {
10 $labels = $this->model->labelFactory->get_all();
20 $label = $this->model->labelFactory->get_one($id);
22 $label = $this->model->labelFactory->create_object();
35 $this->model->labelFactory->delete($label);
41 $this->model->labelFactory->save($label);
H A Dtask_programs.php8 if ($this->model->get_level() < BEZ_AUTH_ADMIN) {
12 $task_programs = $this->model->task_programFactory->get_all([], 'name');
23 $task_program = $this->model->task_programFactory->get_one($id);
25 $task_program = $this->model->task_programFactory->create_object();
36 $this->model->task_programFactory->delete($task_program);
42 $this->model->task_programFactory->save($task_program);
H A Dkp.php7 if (!isset($_GET['t']) && $this->model->authentication_tokenFactory->can_create_token()) {
8 $token = $this->model->authentication_tokenFactory->create_token($this->id());
13 if ($this->model->get_level() < BEZ_AUTH_VIEWER) {
18 $thread = $this->model->threadFactory->get_one($this->get_param('id'));
21 $tasks = $this->model->taskFactory->get_with_closing_comment($thread)->fetchAll();
H A Dtask_form.php6 if ($this->model->get_level() < BEZ_AUTH_USER) {
11 $task = $this->model->taskFactory->create_object();
14 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
17 $this->model->taskFactory->initial_save($task, $_POST);
20 $task_dup = $this->model->taskFactory->get_one($this->get_param('duplicate'));
/plugin/diagramsnet/lib/js/diagramly/
H A DTrees.js28 this.model.beginUpdate();
48 this.model.endUpdate();
59 this.model.beginUpdate();
92 this.model.endUpdate();
449 this.model.beginUpdate();
475 this.model.endUpdate();
583 this.model.endUpdate();
597 var model = graph.model;
600 model.beginUpdate();
609 if (model.isEdge(result[i]) && model.getTerminal(result[i], true) == null)
[all …]
H A DDiffSync.js319 model.beginUpdate();
353 root = model.getCell(id);
359 model.setRoot(root);
364 this.patchCellRecursive(page, model, model.root, parentLookup, diff);
375 model.remove(cell);
388 this.patchCell(model, model.getCell(id),
404 model.setTerminal(cell, model.getCell(cellDiff.source), true);
405 model.setTerminal(cell, model.getCell(cellDiff.target), false);
426 model.endUpdate();
609 model.setTerminal(cell, model.getCell(diff.source), true);
[all …]
/plugin/aichat/
H A DEmbeddings.php114 floor($this->embedModel->getMaxInputTokenLength() * 0.9), // only use 90% of the embedding model to be safe
24 protected $model; global() variable in dokuwiki\\plugin\\aichat\\Embeddings
39 __construct(AbstractModel $model, AbstractStorage $storage) global() argument
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/
H A DFeature.php29 public $model; variable in Google\\Service\\Vision\\Feature
52 public function setModel($model) argument
54 $this->model = $model;
61 return $this->model;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ChromeManagement/
H A DGoogleChromeManagementV1CpuInfo.php33 public $model; variable in Google\\Service\\ChromeManagement\\GoogleChromeManagementV1CpuInfo
66 public function setModel($model) argument
68 $this->model = $model;
75 return $this->model;
/plugin/diagramsnet/lib/plugins/trees/
H A Dtrees.js21 var model = graph.getModel();
169 this.model.beginUpdate();
209 this.model.endUpdate();
278 this.model.beginUpdate();
304 this.model.endUpdate();
316 this.model.beginUpdate();
408 this.model.endUpdate();
420 var model = graph.model;
423 model.beginUpdate();
432 if (model.isEdge(result[i]) && model.getTerminal(result[i], true) == null)
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Translate/
H A DDetectLanguageRequest.php37 public $model; variable in Google\\Service\\Translate\\DetectLanguageRequest
84 public function setModel($model) argument
86 $this->model = $model;
93 return $this->model;
H A DTranslation.php31 public $model; variable in Google\\Service\\Translate\\Translation
68 public function setModel($model) argument
70 $this->model = $model;
77 return $this->model;
H A DTranslateDocumentResponse.php31 public $model; variable in Google\\Service\\Translate\\TranslateDocumentResponse
78 public function setModel($model) argument
80 $this->model = $model;
87 return $this->model;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HomeGraphService/
H A DDeviceInfo.php33 public $model; variable in Google\\Service\\HomeGraphService\\DeviceInfo
70 public function setModel($model) argument
72 $this->model = $model;
79 return $this->model;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ToolResults/
H A DScreen.php33 public $model; variable in Google\\Service\\ToolResults\\Screen
70 public function setModel($model) argument
72 $this->model = $model;
79 return $this->model;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/
H A DChromeOsDeviceCpuInfo.php36 public $model; variable in Google\\Service\\Directory\\ChromeOsDeviceCpuInfo
83 public function setModel($model) argument
85 $this->model = $model;
92 return $this->model;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Fitness/
H A DDevice.php29 public $model; variable in Google\\Service\\Fitness\\Device
60 public function setModel($model) argument
62 $this->model = $model;
69 return $this->model;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidProvisioningPartner/
H A DDeviceIdentifier.php37 public $model; variable in Google\\Service\\AndroidProvisioningPartner\\DeviceIdentifier
88 public function setModel($model) argument
90 $this->model = $model;
97 return $this->model;

1234567891011