Home
last modified time | relevance | path

Searched refs:null (Results 1 – 25 of 5084) sorted by last modified time

12345678910>>...204

/plugin/pagelist/
H A Dsyntax.php52 list($flags, $match) = array_pad(explode('>', $match, 2), 2, null);
60 list($id, $title, $description) = array_pad(explode('|', $match[1], 3), 3, null);
61 list($id, $section) = array_pad(explode('#', $id, 2), 2, null);
76 list($image, $title) = array_pad(explode('|', $match[1], 2), 2, null);
H A Dhelper.php44 * @var null|array with entries: 'columnname' => value or if plugin html for in cell, null if no lines processed
47 public $page = null;
77 /** @var null|mixed data retrieved from metadata array for the current processed page */
78 protected $meta = null;
81 public $_meta = null;
84 protected $pageimage = null;
86 protected $discussion = null;
88 protected $linkback = null;
90 protected $tag = null;
[all...]
/plugin/pagequery/
H A DPageQuery.php251 $value = null;
579 $begin = (empty($filters[0]) ? null : strtotime($filters[0]));
580 $end = (empty($filters[1]) ? null : strtotime($filters[1]));
583 if ($begin !== null && $end !== null) {
585 } elseif ($begin !== null) {
587 } elseif ($end !== null) {
/plugin/twofactor/
H A DGoogleAuthenticator.php65 * @param int|null $timeSlice
69 public function getCode($secret, $timeSlice = null)
71 if ($timeSlice === null) {
107 public function getQRCodeGoogleUrl($name, $secret, $title = null, $params = array())
127 * @param int|null $currentTimeSlice time slice if we want use other that time()
131 public function verifyCode($secret, $code, $discrepancy = 1, $currentTimeSlice = null)
133 if ($currentTimeSlice === null) {
H A DManager.php40 if ($attribute === null) {
70 if (self::$instance === null) {
81 self::$instance = null;
129 if ($this->user === null) {
159 * @param bool|null $set
162 public function userOptOutState($set = null)
169 if ($set === null) {
241 * @return Provider|null
252 if ($first !== null) {
H A DProvider.php29 null,
H A DSettings.php29 if ($this->attribute === null) throw new \RuntimeException('attribute plugin not found');
46 if ($attribute === null) throw new \RuntimeException('attribute plugin not found');
79 public function get($key, $default = null)
/plugin/twofactor/action/
H A Dlogin.php26 null,
206 setcookie(self::TWOFACTOR_COOKIE, null, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true);
H A Dresendpwd.php25 null,
34 null,
/plugin/attribute/
H A Dhelper.php16 protected $storepath = null;
17 protected $cache = null;
158 return null;
307 if ($user === null) {
316 if ($data !== null) {
344 if ($user === null) {
355 if ($data === null) {
381 if ($user === null) {
417 if ($user === null) {
425 if ($data !== null) {
[all …]
/plugin/nspages/
H A DoptionParser.php79 $varAffected = null;
88 $varAffected = null;
H A Dsyntax.php118 'customTitle' => null,
124 'pagesinns' => false, 'anchorName' => null, 'actualTitleLevel' => false,
131 'sortByCreationDate' => false, 'defaultPicture' => null, 'tree' => false,
156 // In this case $INFO is null so there is not much we can do,
/plugin/nspages/fileHelper/
H A DpagePreparer.php122 if ($this->customTitle !== null) {
127 if($this->useIdAndTitle && $title !== null ){
131 if(!$this->useTitle || $title === null) {
138 if ($this->sortByMetadata !== null) {
H A DnamespacePreparer.php27 $ns['title'] = null;
50 $ns['idMainPage'] = page_exists($page) ? $page : null;
/plugin/nspages/printers/
H A Dprinter.php123 if($item == null || $item['type'] !== 'd') {
H A DprinterTree.php215 public $self = null;
222 public $id = null;
/plugin/dbquery/
H A Dhelper.php41 public function getPDO($dsn = null, $user = null, $pass = null)
H A Drenderer.php30 public function code($text, $lang = null, $file = null)
/plugin/dbquery/_test/
H A DGeneralTest.php67 if ($conf !== null && $meta !== null) {
/plugin/siteexport/inc/
H A Ddebug.php60 public function setDebugFile($file = null)
64 $file = null;
78 public function message($info,$var=null,$level=4){
174 $this->message('Runtime Error: ' . $message, null, 4);
H A Djavahelp.php8 private $functions = null;
9 private $translation = null;
10 private $filewriter = null;
11 private $NS = null;
63 $this->functions->debug->message("HelpSetPre-Name: {$hsPrename}", null, 3);
64 $this->functions->debug->message("Translation-Root: {$translationRoot}", null, 3);
77 $toc->translation = null;
100 $last_key = null;
H A Dmpdf.php24 private $debugObj = null;
67 public function message($msg, $vars = null, $lvl = 1)
69 if ($this->debugObj !== null) {
76 if ($this->debugObj !== null && method_exists($this->debugObj, 'runtimeException')) {
H A DpatchCSSmgr.php11 public function __construct($include_file = null) {
/plugin/siteexport/action/
H A Dajax.php35 private $filewriter = null;
36 public $functions = null;
83 $keys = is_array($event->data) ? array_keys($event->data) : null;
762 $ID = $this->functions->cleanID($DATA[2], null, $ISMEDIA);
799 …$url = $this->functions->wl($ID, null, true, null, null, true, $hadBase) . (!empty($ANCHOR) ? '#' …
824 if ( $result !== null ) {
920 $DATA[2] = $this->functions->wl($ID, null, null, null, $IDexists, true);
975 return $this->__rebuildLink($DATA, null, $ID);
985 return null;
1116 private function __rebuildLink($DATA, $DEPTH = null, $existingPageID = null) {
[all …]
H A Dstartup.php35 $headers = function_exists('getallheaders') ? getallheaders() : null;
70 $keys = is_array($event->data) ? array_keys($event->data) : null;
108 $mapIDs = $functions->getMapID($ID, null, $check);

12345678910>>...204