Home
last modified time | relevance | path

Searched refs:model (Results 1 – 25 of 272) sorted by last modified time

1234567891011

/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/photogallery/phpThumb/licenses/
H A Dlicense.gpl-30.txt261 model, to give anyone who possesses the object code either (1) a
/plugin/photogallery/
H A Dsyntax.php916 $model = $jpeg->getField(array('Exif.Model','Exif.TIFFModel'));
917 $model = preg_replace('/^'.$make.' /','',$model);
927 $this->_addString($ret,$make.$model,$make.' '.$model, ' - ');
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe
/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
H A Dhelper.php254 * @param ChatInterface $model The used model
261 ChatInterface $model,
267 $remainingContext = $model->getMaxInputTokenLength();
20 protected $model; global() variable in helper_plugin_aichat
/plugin/aichat/Model/OpenAI/
H A DGPT35Turbo.php
/plugin/bez/ctl/
H A Dactivity_report.php6 if ($this->model->get_level() < BEZ_AUTH_USER) {
23 $this->tpl->set('thread_involvement', $this->model->threadFactory->users_involvement($period));
24 $this->tpl->set('task_involvement', $this->model->taskFactory->users_involvement($period));
25 $this->tpl->set('kpi', $this->model->threadFactory->kpi($period));
26 $this->tpl->set('bez_activity', $this->model->threadFactory->bez_activity($period))
H A Dtasks.php6 if ($this->model->get_level() < BEZ_AUTH_USER) {
11 if ($this->model->get_level() >= BEZ_AUTH_ADMIN && isset($_POST['action']) && isset($_POST['task_id'])) {
14 $task = $this->model->taskFactory->get_one($id);
15 $this->model->taskFactory->delete($task);
19 $task = $this->model->taskFactory->get_one($id);
21 $this->model->taskFactory->save($task);
54 $years = $this->model->taskFactory->get_years_scope();
87 $db_filters['original_poster'] = array('OR', $this->model->userFactory->users_of_group($group));
93 $db_filters['assignee'] = array('OR', $this->model->userFactory->users_of_group($group));
103 $tasks = $this->model
[all...]
H A Dthread.php6 if ($this->model->get_level() < BEZ_AUTH_USER) {
15 $thread = $this->model->threadFactory->get_one($this->get_param('id'));
26 $thread_comments = iterator_to_array($this->model->thread_commentFactory->get_from_thread($thread));
27 $tasks = $this->model->taskFactory->get_from_thread($thread);
39 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
42 $thread_comment = $this->model->thread_commentFactory->create_object(array('thread' => $thread));
47 $this->model->thread_commentFactory->initial_save($thread_comment, $_POST);
54 $thread->set_participant_flags($this->model->user_nick, array('subscribent'));
59 $thread->remove_participant_flags($this->model->user_nick, array('subscribent'));
68 $this->add_notification($this->model
[all...]
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 Dthreads.php6 if ($this->model->get_level() < BEZ_AUTH_USER) {
37 $years = $this->model->threadFactory->get_years_scope();
69 $db_filters['coordinator'] = array('OR', $this->model->userFactory->users_of_group($group));
75 $db_filters['original_poster'] = array('OR', $this->model->userFactory->users_of_group($group));
108 $threads = $this->model->threadFactory->get_all($db_filters, $orderby);
110 $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);
/plugin/bez/mdl/
H A DAuthentication_tokenFactory.php10 return $this->model->get_level() >= BEZ_AUTH_USER;
14 $r = $this->model->sqlite->query("SELECT token FROM {$this->get_table_name()} WHERE page_id=?", $page_id);
15 $token = $this->model->sqlite->res2single($r);
38 $this->model->sqlite->storeEntry($this->get_table_name(),
41 'generated_by' => $this->model->user_nick,
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...]
H A DFactory.php13 protected $model; variable in dokuwiki\\plugin\\bez\\mdl\\Factory
125 public function __construct(Model $model) { argument
126 $this->model = $model;
144 $sth = $this->model->db->prepare($q);
147 array($this->model, $defaults));
163 $sth = $this->model->db->prepare($q);
174 $sth = $this->model->db->prepare($q);
192 $sth = $this->model->db->prepare($q);
196 array($this->model,
[all...]
H A DLabel.php12 public function __construct($model) { argument
13 parent::__construct($model);
20 $this->added_by = $this->model->user_nick;
H A DSubscriptionFactory.php12 $r = $this->model->sqlite->query($q, $token);
13 return $this->model->sqlite->res2single($r);
24 $this->model->sqlite->query($q, $user_id);
27 if ($this->model->get_level() < BEZ_AUTH_USER) {
31 $this->model->sqlite->query($q, $this->model->user_nick);
37 if ($this->model->get_level() < BEZ_AUTH_USER) {
41 $this->model->sqlite->query($q, $this->model->user_nick);
45 if ($this->model
[all...]
H A DTask.php68 $this->thread = $this->model->threadFactory->get_one($this->thread_id);
77 $this->thread_comment = $this->model->thread_commentFactory->get_one($this->thread_comment_id);
87 public function __construct($model, $defaults=array()) {
88 parent::__construct($model, $defaults);
105 $this->original_poster = $this->model->user_nick;
157 if ($this->type == 'program' && $this->model->get_level() >= BEZ_AUTH_LEADER) {
162 if ($this->type != 'program' && $this->coordinator == $this->model->user_nick) {
194 if ($this->model->level < BEZ_AUTH_ADMIN && $this->private == '1') {
195 if ($this->get_participant($this->model->user_nick) === false &&
196 ($this->thread_id != '' && $this->__get('thread')->get_participant($this->model
86 __construct($model, $defaults = array()) global() argument
[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 DTask_comment.php24 $this->task = $this->model->taskFactory->get_one($this->task_id);
31 public function __construct($model, $defaults=array()) { argument
32 parent::__construct($model, $defaults);
41 $this->author = $this->model->user_nick;
53 if ($this->author == $this->model->user_nick || $this->model->get_level() >= BEZ_AUTH_LEADER) {
63 if ($this->author == $this->model->user_nick || $this->model->get_level() >= BEZ_AUTH_LEADER) {
76 $tpl = $this->model->action->get_tpl();
86 $tpl = $this->model
[all...]
H A DTask_commentFactory.php37 $this->model->sqlite->query("UPDATE {$this->get_table_name()} SET closing=1 WHERE id=?",
44 $this->model->sqlite->query("UPDATE {$this->get_table_name()} SET closing=0 WHERE task_id=?",
H A DTask_program.php18 public function __construct($model) { argument
19 parent::__construct($model);
26 $this->added_by = $this->model->user_nick;
H A DThread.php56 if ($this->coordinator === $this->model->user_nick ||
57 $this->model->get_level() >= BEZ_AUTH_ADMIN) {
63 public function __construct($model, $defaults=array()) {
64 parent::__construct($model);
75 $this->original_poster = $this->model->user_nick;
87 if ($this->model->get_level() >= BEZ_AUTH_LEADER) {
98 if ($this->model->level < BEZ_AUTH_ADMIN && $this->private == '1') {
99 if ($this->get_participant($this->model->user_nick) === false) {
105 if ($this->state == 'proposal' && $this->original_poster == $this->model->user_nick) {
111 if ($this->coordinator == $this->model
62 __construct($model, $defaults = array()) global() argument
[all...]
H A DThreadFactory.php14 $r = $this->model->sqlite->query('SELECT create_date FROM thread ORDER BY id LIMIT 1');
15 $date = $this->model->sqlite->res2single($r);
42 $r = $this->model->sqlite->query($sql, $from, $to);
53 $r = $this->model->sqlite->query($sql);
66 $r = $this->model->sqlite->query($sql, $from, $to);
71 $r = $this->model->sqlite->query($sql);
90 $r = $this->model->sqlite->query($sql, $from, $to, $from, $to);
97 $r = $this->model->sqlite->query($sql);
100 $wiki_users = count($this->model->userFactory->get_all());
128 $r = $this->model
[all...]

1234567891011