Home
last modified time | relevance | path

Searched refs:dbHelper (Results 1 – 11 of 11) sorted by relevance

/plugin/structpublish/action/
H A Dshow.php38 $dbHelper = plugin_load('helper', 'structpublish_db');
41 !$dbHelper->isPublishable() ||
50 if (!$dbHelper->isPublisher($ID) && auth_quickaclcheck($ID) < AUTH_EDIT) {
79 $dbHelper = plugin_load('helper', 'structpublish_db');
82 !$dbHelper->isPublishable() ||
H A Dbanner.php17 protected $dbHelper; variable in action_plugin_structpublish_banner
41 $this->dbHelper = plugin_load('helper', 'structpublish_db');
43 if (!$this->dbHelper->isPublishable()) {
79 $this->dbHelper->checkAccess($ID)
164 $this->dbHelper->checkAccess($ID, [Constants::ACTION_APPROVE])
172 if ($this->dbHelper->checkAccess($ID, [Constants::ACTION_PUBLISH])) {
H A Dsave.php31 $dbHelper = plugin_load('helper', 'structpublish_db');
38 if (!$dbHelper->isPublishable()) {
/plugin/structpublish/helper/
H A Dpublish.php17 protected $dbHelper; variable in helper_plugin_structpublish_publish
21 $this->dbHelper = plugin_load('helper', 'structpublish_db');
36 if (!$this->dbHelper->checkAccess($ID, [$action])) {
74 $sqlite = $this->dbHelper->getDB();
H A Dnotify.php15 protected $dbHelper; variable in helper_plugin_structpublish_notify
19 $this->dbHelper = plugin_load('helper', 'structpublish_db');
/plugin/watchcycle/
Dcli.php10 protected $dbHelper; variable in cli_plugin_watchcycle
21 $this->dbHelper = plugin_load('helper', 'watchcycle_db');
64 $rows = $this->dbHelper->getAll();
Dadmin.php50 $dbHelper = plugin_load('helper', 'watchcycle_db');
96 $rows = $dbHelper->getAll($headers);
Daction.php130 $dbHelper = plugin_load('helper', 'watchcycle_db');
133 $sqlite = $dbHelper->getDB();
/plugin/struct/_test/mock/
H A DSearch.php24 $this->dbHelper = new helper_plugin_struct_db;
25 …$this->sqlite->getPdo()->sqliteCreateFunction('IS_PUBLISHER', [$this->dbHelper, 'IS_PUBLISHER'], -…
/plugin/structpublish/meta/
H A DAssignments.php84 $dbHelper = plugin_load('helper', 'structpublish_db');
85 $pids = $dbHelper->getPages();
/plugin/struct/meta/
H A DSearch.php27 protected $dbHelper; variable in dokuwiki\\plugin\\struct\\meta\\Search
70 $this->dbHelper = plugin_load('helper', 'struct_db');
71 $this->sqlite = $this->dbHelper->getDB();