/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/ |
H A D | model.js | 219 model.set({ 403 model: Model 431 model.set({ 434 model.set({ 448 model.clear(); 544 assert.ok(_.isEqual(env.syncArgs.model, model)); 584 model.fetch(); 998 assert.ok(this.syncArgs.model === model); 1258 model.save(); 1291 model.save(); [all …]
|
H A D | sync.js | 146 model.fetch(); 155 model.url = '/test'; 165 model.url = '/test'; 172 model.url = '/test'; 182 model.url = '/test'; 185 model.sync('create', model); 189 model.sync('create', model); 199 model.sync('create', model); 203 model.sync('create', model); 218 model.sync('delete', model, { [all …]
|
H A D | collection.js | 30 col.comparator = function(model) { return model.id; }; 66 var comparator = function(model){ return model.id; }; argument 94 assert.equal(collection.get(model.cid), model); 95 assert.equal(collection.get(model), model); 298 if (model.model) return model.model; 576 assert.equal(this.syncArgs.model, model); 754 model 937 collection.add([model, model]); 1230 assert.ok(model === m2 || model === m3); 1615 assert.equal(model, this._byId[model.id]); [all …]
|
/plugin/bez/mdl/ |
H A D | SubscriptionFactory.php | 12 $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 D | Thread.php | 56 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 D | Task.php | 68 $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 D | Task_comment.php | 24 $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 D | ThreadFactory.php | 14 $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...] |
H A D | UserFactory.php | 7 private $model; variable in dokuwiki\\plugin\\bez\\mdl\\UserFactory 9 public function __construct($model) { argument 10 $this->model = $model; 14 $wikiusers = $this->model->dw_auth->retrieveUsers(); 25 $groups_s = $this->model->action->getConf('hidden_groups'); 52 $wikiusers = $this->model->dw_auth->retrieveUsers(); 81 $wikiusers = $this->model->dw_auth->retrieveUsers();
|
H A D | Factory.php | 13 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...] |
/plugin/bez/ctl/ |
H A D | thread.php | 6 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 D | task.php | 6 if ($this->model->get_level() < BEZ_AUTH_USER) { 15 $task = $this->model->taskFactory->get_one($this->get_param('tid')); 17 $this->tpl->set('task_comments', $this->model->task_commentFactory->get_from_task($task)); 18 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name')); 23 $task_comment = $this->model->task_commentFactory->create_object(array('task' => $task)); 24 $this->model->task_commentFactory->initial_save($task_comment, $_POST); 31 $task->set_participant_flags($this->model->user_nick, array('subscribent')); 36 $task->remove_participant_flags($this->model->user_nick, array('subscribent')); 45 $this->add_notification($this->model->userFactory->get_user_email($client), $this->getLang('invitation_has_been_send')); 52 $name = $this->model [all...] |
H A D | start.php | 6 if ($this->model->get_level() < BEZ_AUTH_USER) { 48 $threads = $this->model->threadFactory->get_all($filter, 'create_date DESC'); 49 $thread_comments = $this->model->thread_commentFactory->get_all($filter, 'create_date DESC'); 50 $tasks = $this->model->taskFactory->get_all($filter, 'create_date DESC'); 51 $task_comments = $this->model->task_commentFactory->get_all($filter, 'create_date DESC'); 107 $proposals = $this->model->threadFactory->get_all($filter, $orderby); 109 $this->tpl->set('proposals_count', $this->model->threadFactory->count($filter)); 112 $filter = array('state' => 'opened', 'coordinator' => $this->model->user_nick); 113 $my_threads = $this->model->threadFactory->get_all($filter, $orderby); 115 $this->tpl->set('my_threads_count', $this->model [all...] |
H A D | tasks.php | 6 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 D | 8d.php | 7 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 $this->model->thread_commentFactory-> 24 $this->model->thread_commentFactory-> 27 $this->model->thread_commentFactory-> 29 $tasks = $this->model->taskFactory->get_by_type($thread);
|
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/ |
H A D | backbone.js | 603 model.trigger('sync', model, resp, options); 674 model.trigger('destroy', model, model.collection, options); 680 if (!model.isNew()) model.trigger('sync', model, resp, options); 765 if (options.model) this.model = options.model; 879 var attrs = this._isModel(model) ? model.attributes : model; 1077 model = this._prepareModel(model, options); 1099 model: this.model, 1126 var model = new this.model(attrs, options); 1127 if (!model.validationError) return model; 1168 this._byId[model.cid] = model; [all …]
|
/plugin/fksnewsfeed/inc/ORM/ |
H A D | ModelNews.php | 113 $model = new self($helperPluginSqlite); 114 $model->newsId = $data['news_id']; 115 $model->title = $data['title']; 116 $model->authorName = $data['author_name']; 118 $model->text = $data['text']; 119 $model->newsDate = $data['news_date']; 120 $model->image = $data['image']; 121 $model->category = $data['category']; 122 $model->linkHref = $data['link_href']; 123 $model->linkTitle = $data['link_title']; [all …]
|
H A D | ModelPriority.php | 38 $model = new self($helperPluginSqlite); 39 $model->priorityId = $data['priority_id']; 40 $model->newsId = $data['news_id']; 41 $model->streamId = $data['stream_id']; 42 $model->priorityValue = $data['priority'] ?? 0; 43 $model->priorityFrom = $data['priority_from']; 44 $model->priorityTo = $data['priority_to']; 46 return $model;
|
/plugin/diagramsnet/lib/plugins/webcola/ |
H A D | mxWebColaLayout.js | 106 var model = graph.getModel(); 107 var cells = model.cells; 109 model.beginUpdate(); 124 model.setGeometry(cell, geometry); 131 model.endUpdate(); 272 var model = this.graph.getModel(); 275 model.beginUpdate(); 279 var cells = model.cells; 310 if (model.isVertex(cell)) 369 if (model.isVertex(cell)) [all …]
|
/plugin/diagramsnet/lib/plugins/ |
H A D | anonymize.js | 43 var model = graph.model; 45 model.beginUpdate(); 51 for (var id in model.cells) 53 var cell = model.cells[id]; 70 model.setValue(queue[i].cell, queue[i].label); 76 model.execute(new RenamePage(editorUi, editorUi.currentPage, 82 model.endUpdate();
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudVideoIntelligence/ |
H A D | GoogleCloudVideointelligenceV1ExplicitContentDetectionConfig.php | 25 public $model; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1ExplicitContentDetectionConfig 30 public function setModel($model) argument 32 $this->model = $model; 39 return $this->model;
|
H A D | GoogleCloudVideointelligenceV1ShotChangeDetectionConfig.php | 25 public $model; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1ShotChangeDetectionConfig 30 public function setModel($model) argument 32 $this->model = $model; 39 return $this->model;
|
H A D | GoogleCloudVideointelligenceV1ObjectTrackingConfig.php | 25 public $model; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1ObjectTrackingConfig 30 public function setModel($model) argument 32 $this->model = $model; 39 return $this->model;
|
/plugin/combo/ComboStrap/ |
H A D | TemplateForWebPage.php | 66 private array $model; variable in ComboStrap\\TemplateForWebPage 108 public function setModel(array $model): TemplateForWebPage argument 110 $this->model = $model; 158 * Get model should came after template validation 162 $model = $this->getModel(); 165 return self::DOCTYPE . $pageTemplateEngine->renderWebPage($template, $model); 476 $model = 485 if (isset($this->model)) { 486 return array_merge($model, [all...] |
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Texttospeech/ |
H A D | CustomVoiceParams.php | 25 public $model; variable in Google\\Service\\Texttospeech\\CustomVoiceParams 34 public function setModel($model) argument 36 $this->model = $model; 43 return $this->model;
|