Home
last modified time | relevance | path

Searched refs:model (Results 1 – 25 of 272) sorted by relevance

1234567891011

/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/
H A Dmodel.js219 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 Dsync.js146 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 Dcollection.js30 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 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 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 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 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 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...]
H A DUserFactory.php7 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 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...]
/plugin/bez/ctl/
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 Dtask.php6 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 Dstart.php6 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 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 D8d.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 $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 Dbackbone.js603 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 DModelNews.php113 $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 DModelPriority.php38 $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 DmxWebColaLayout.js106 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 Danonymize.js43 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 DGoogleCloudVideointelligenceV1ExplicitContentDetectionConfig.php25 public $model; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1ExplicitContentDetectionConfig
30 public function setModel($model) argument
32 $this->model = $model;
39 return $this->model;
H A DGoogleCloudVideointelligenceV1ShotChangeDetectionConfig.php25 public $model; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1ShotChangeDetectionConfig
30 public function setModel($model) argument
32 $this->model = $model;
39 return $this->model;
H A DGoogleCloudVideointelligenceV1ObjectTrackingConfig.php25 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 DTemplateForWebPage.php66 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 DCustomVoiceParams.php25 public $model; variable in Google\\Service\\Texttospeech\\CustomVoiceParams
34 public function setModel($model) argument
36 $this->model = $model;
43 return $this->model;

1234567891011