Home
last modified time | relevance | path

Searched refs:false (Results 376 – 400 of 6149) sorted by relevance

1...<<11121314151617181920>>...246

/plugin/farm/install/
H A Dconfig.php16 $farmconf['farmrewrite'] = false;
19 $farmconf['userewrite'] = false;
22 $farmconf['virtual'] = false;
31 $farmconf['enablesoap'] = false;
/plugin/subjectindex/syntax/
H A Dindex.php57 $opt['hideatoz'] = false; // turn off the A,B,C main headings
58 $opt['proper'] = false; // use proper-case for page names
61 $opt['showorder'] = false; // display any bullet numbers used for ordering
64 $opt['hidejump'] = false; // hide the 'jump to top' link
124 $renderer->info['cache'] = false;
132 return false;
142 return false;
193 $is_heading = $is_link = false;
201 if ($next_node === false) {
226 } while ($next_node !== false);
[all …]
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DPolygon.php21 * @param bool|false $forceCreate
24 public function __construct($components = [], $forceCreate = false)
66 * @param bool|false $exteriorOnly Calculate the area of exterior ring only, or the polygon with holes
67 * @param bool|false $signed Usually we want to get positive area, but vertices order (CW or CCW) can be determined from signed area.
71 public function area($exteriorOnly = false, $signed = false)
77 if ($this->getGeos() && $exteriorOnly == false) {
239 return false;
264 return $pointOnVertex ? true : false;
280 return $pointOnBoundary ? true : false;
[all...]
/plugin/feedback/
H A Daction.php17 protected $detail_page = false;
41 if($ACT != 'show' && !$this->detail_page) return false;
43 if(!$_SERVER['REMOTE_USER'] && !$this->getConf('allowanon')) return false;
45 if(!$this->getFeedbackContact($ID)) return false;
99 $url = ml($id, '', false, '&amp;', true);
138 'isMedia' => false,
194 return false;
206 public function tpl($return = false) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/
H A DLongConditionClosingCommentSniff.php99 if (isset($tokens[$stackPtr]['scope_condition']) === false) {
109 if (in_array($startCondition['code'], self::$_openers) === false) {
128 && isset($tokens[$nextToken]['scope_closer']) === false
132 || isset($tokens[$nextToken]['scope_closer']) === false
139 if (isset($tokens[$nextToken]['scope_closer']) === false) {
171 $comment = $phpcsFile->findNext(array(T_COMMENT), $stackPtr, null, false);
173 if (($comment === false) || ($tokens[$comment]['line'] !== $endBrace['line'])) {
181 if ($next !== false && $tokens[$next]['line'] === $tokens[$stackPtr]['line']) {
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/doc/
H A DPHPClass.php64 $success = false;
82 return false;
92 $success = false;
95 $parsing = false;
104 $parsing = false;
112 $blockstart = false;
125 if($str !== false) {
186 $success = false;
/plugin/preservefilenames/
H A Daction_adorabelle.php33 function _mod_media_printfile($item,$auth,$jump,$display_namespace=false){
51 list($ext,$mime,$dl) = mimetype($item['file'],false);
58 if ($file === false) {
64 $fakeId = $ns === false ? $file : "$ns:$file";
120 function _mod_media_printfile_thumbs($item,$auth,$jump=false,$display_namespace=false){
127 if ($file === false) {
133 $fakeId = $ns === false ? $file : "$ns:$file";
/plugin/siteexport/inc/
H A Dsettings.php10 public $isCLI = false;
17 public $addParams = false;
22 public $isAuthed = false;
24 public $TOCMapWithoutTranslation = false;
27 public $hasValidCacheFile = false;
29 public $useTOCFile = false;
59 … $functions->debug->isAJAX = $this->getConf('ignoreAJAXError') ? false : $functions->debug->isAJAX;
101 …>TOCMapWithoutTranslation = intval($_REQUEST['TOCMapWithoutTranslation'] ?? 0) == 1 ? true : false;
/plugin/badbehaviour/bad-behavior/
H A Dblackhole.inc.php13 if (@is_ipv6($package['ip'])) return false;
47 return false;
52 if (@is_ipv6($package['ip'])) return false;
54 if (@!$settings['httpbl_key']) return false;
72 return false;
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A DTypeComparatorTest.php32 array(false, array(1)),
43 array(true, false),
44 array(false, false),
59 array(null, false),
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DParser.php81 if (false === preg_match('//u', $value)) {
139 $allowOverwrite = false;
164 $isRef = $mergeNode = false;
522 $EOF = false;
607 return false;
623 return false;
710 $previousLineBlank = false;
807 $previousLineIndented = false;
808 $previousLineBlank = false;
866 return false;
[all …]
/plugin/combo/vendor/symfony/process/
H A DProcess.php55 private $hasCallback = false;
67 private $outputDisabled = false;
74 private $tty = false;
78 private $useFileHandles = false;
166 $this->pty = false;
215 if ($this->options['create_new_console'] ?? false) {
343 if (false !== $v && false === \in_array($k, ['argc', 'argv', 'ARGC', 'ARGV'], true)) {
367 $this->updateStatus(false);
419 $this->updateStatus(false);
[all...]
/plugin/zip/pear/MIME/
H A DType.php81 function MIME_Type($type = false)
121 return false;
223 return false;
240 return false;
256 return false;
273 return false;
284 return false;
296 function addParameter($name, $value, $comment = false)
329 function autoDetect($file, $params = false)
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/
H A DIncrementDecrementUsageSniff.php100 if ($next === false) {
111 if ($prev === false) {
148 if ($noiseTokens !== false) {
156 if ($nextVar !== false) {
165 … while (($nextVar = $phpcsFile->findNext(T_VARIABLE, ($nextVar + 1), $statementEnd)) !== false) {
185 …ber = $phpcsFile->findNext(array(T_LNUMBER), ($nextNumber + 1), $statementEnd, false)) !== false) {
198 if ($opToken === false) {
214 if ($negative !== false) {
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
H A DEachPromise.php106 $this->mutex = false;
164 return false;
207 return false;
214 $this->mutex = false;
218 $this->mutex = false;
219 return false;
222 $this->mutex = false;
223 return false;
253 return false;
/plugin/structtasks/
H A Dcli.php22 public $testing = false;
29 $options->registerOption('verbose', 'Show progress information', 'v', false);
64 public function initialise($verbose = false) : bool {
67 return false;
70 if ($this->schema == '') return false;
72 if (is_null($this->struct)) return false;
77 return false;
95 function createNotifiers($reminder_days, $overdue, $verbose = false) : array {
100 if (($key = array_search(0, $reminder_days)) !== false) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DCalendarQueryVAlarmTest.php31 'is-not-defined' => false,
37 'is-not-defined' => false,
43 'is-not-defined' => false,
92 'is-not-defined' => false,
98 'is-not-defined' => false,
104 'is-not-defined' => false,
/plugin/mantis/lib/
H A Dclass.nusoap_base.php547 …? $pXml.$this->serialize_val($v,$k,false,false,false,false,$use) : $this->serialize_val($v,$k,fals…
580 $xml .= $this->serialize_val($v,'item',false,false,false,false,$use);
674 …function serializeEnvelope($body,$headers=false,$namespaces=array(),$style='rpc',$use='encoded',$e…
813 return false;
828 return false;
846 return false;
920 return false;
959 return false;
/plugin/displayfile/
H A Dsyntax.php55 $target_title = false;
60 … return $error === false ? array($text, $language, $title) : array("ERROR: {$error}", null, null);
81 return false;
98 if ($real_root === false || !is_dir($real_root))
104 else if (strpos($target, '../') !== false)
165 else if ($real_path === false) { return sprintf($this->getLang('error_access'), $title); }
179 if ($result === false)
189 return false;
204 return $result === false || $result > 0;
206 return false;
[all …]
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DCronExpression.php100 return false;
194 public function getNextRunDate($currentTime = 'now', $nth = 0, $allowCurrentDate = false)
196 return $this->getRunDate($currentTime, $nth, false, $allowCurrentDate);
211 public function getPreviousRunDate($currentTime = 'now', $nth = 0, $allowCurrentDate = false)
227 public function getMultipleRunDates($total, $currentTime = 'now', $invert = false, $allowCurrentDate = false)
306 return false;
322 protected function getRunDate($currentTime = null, $nth = 0, $invert = false, $allowCurrentDate = false)
354 $satisfied = false;
[all...]
/plugin/tindexmenu/inc/
H A Drepo.class.php15 if(!$idxm->getConf('be_repo') || empty($file)) return false;
20 if (!file_exists($localtheme)) return false;
21 if (!io_mkdir_p($repodir)) return false;
31 if ($status == 0) return false;
35 if ($len > 2*1024*1024) return false;
/plugin/shorty/
H A Dsyntax.php56 if (isset($_REQUEST['comment'])) return false;
75 if($data == false) return false;
77 if($mode != 'xhtml') return false;
82 if ($shortUrl != false) {
/plugin/indexmenu/inc/
H A Drepo.class.php20 if (!$idxm->getConf('be_repo') || empty($file)) return false;
25 if (!file_exists($localtheme)) return false;
26 if (!io_mkdir_p($repodir)) return false;
36 if ($status == 0) return false;
40 if ($len > 2 * 1024 * 1024) return false;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Extension/
H A DCoreTest.php249 [false, 4, $array],
250 [false, 4, new CoreTestIterator($array, $keys, true)],
251 [false, 4, new CoreTestIteratorAggregateAggregate($array, $keys, true)],
252 [false, 1, 1],
260 … public function testSliceFilter($expected, $input, $start, $length = null, $preserveKeys = false)
273 [['a' => 1], $i, 0, 1, false],
297 … public function __construct(array $array, array $keys, $allowAccess = false, $maxPosition = false)
312 …ic function __construct(array $array, array $keys, $allowValueAccess = false, $maxPosition = false)
331 …c function __construct(array $values, array $keys, $allowValueAccess = false, $maxPosition = false)
337 $this->maxPosition = false === $maxPosition ? \count($values) + 1 : $maxPosition;
/plugin/sqlraw/
H A Dsyntax.php265 return false;
318 return false;
337 return false;
346 return false;
424 if ($raw == false)
425 return false;
478 $newCells = false;
721 $inside = false;
766 return false;
801 return false;
[all …]

1...<<11121314151617181920>>...246