Searched refs:sqlitehelper (Results 1 – 6 of 6) sorted by relevance
13 private $sqlitehelper; variable in helper_plugin_blogtng_tags23 $this->sqlitehelper = plugin_load('helper', 'blogtng_sqlite');62 if(!$this->sqlitehelper->ready()) {98 if(!$this->sqlitehelper->ready()) {125 if(!$this->sqlitehelper->ready()) return false;133 $resid = $this->sqlitehelper->getDB()->query($query);135 return $this->sqlitehelper->getDB()->res2arr($resid);144 if (!$this->sqlitehelper->ready()) return;147 if (!$this->sqlitehelper->getDB()->query($query)) {164 if (!$this->sqlitehelper->getDB()->query($query)) {[all …]
18 private $sqlitehelper; variable in helper_plugin_blogtng_comments70 if (!$this->sqlitehelper->ready()) return 0;99 if (!$this->sqlitehelper->ready()) {146 $this->sqlitehelper->getDB()->query($query,166 $res = $this->sqlitehelper->getDB()->query(234 if (!$this->sqlitehelper->ready()) return;335 if (!$this->sqlitehelper->ready()) {376 if (!$this->sqlitehelper->ready()) {398 if (!$this->sqlitehelper->ready()) {419 if (!$this->sqlitehelper->ready()) {[all …]
22 private $sqlitehelper = null; variable in helper_plugin_blogtng_entry62 if(!$this->sqlitehelper->ready()) {157 if(!$this->sqlitehelper->ready()) {192 if (!$this->sqlitehelper->ready()) {198 $this->sqlitehelper->getDB()->query(213 $result = $this->sqlitehelper->getDB()->query(289 if(!$this->sqlitehelper->ready()) return '';612 if(!$this->sqlitehelper->ready()) return;622 $res = $this->sqlitehelper->getDB()->query($query);785 if(!$this->sqlitehelper->ready()) return array();[all …]
45 $sqlitehelper = plugin_load('helper', 'blogtng_sqlite');46 if (!$sqlitehelper->ready()) return false;63 $resid = $sqlitehelper->getDB()->query($query, $comment->getPid());68 $comments = $sqlitehelper->getDB()->res2arr($resid);
19 protected $sqlitehelper = null; variable in admin_plugin_blogtng56 $this->sqlitehelper = plugin_load('helper', 'blogtng_sqlite');252 if(!$this->sqlitehelper->ready()) return;254 $db = $this->sqlitehelper->getDB();349 $items = $this->sqlitehelper->getDB()->res2arr($resid);489 if(!$this->sqlitehelper->ready()) return;515 $res = $this->sqlitehelper->getDB()->query($sqlcount);516 $count = $this->sqlitehelper->getDB()->res2single($res);518 $resid = $this->sqlitehelper->getDB()->query($sqlselect);
39 * @param \helper_plugin_sqlite $sqlitehelper for backwards compatibility42 public function __construct($dbname, $schemadir, $sqlitehelper = null)53 $this->helper = $sqlitehelper;41 __construct($dbname, $schemadir, $sqlitehelper = null) global() argument