Home
last modified time | relevance | path

Searched refs:result (Results 776 – 800 of 1997) sorted by relevance

1...<<31323334353637383940>>...80

/plugin/bureaucracy/helper/
H A Daction.php122 $result = array();
123 $result[] = array(
133 return $result;
/plugin/displayfile/
H A Dsyntax.php178 $result = file_get_contents($real_path);
179 if ($result === false)
188 $content = $result;
203 $result = preg_match_all('/\/\*.{610,}?\*\//s', $text);
204 return $result === false || $result > 0;
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DModel.php157 $result = $this->getSimpleValue($val);
158 if ($result !== null) {
159 $object->$key = $this->nullPlaceholderCheck($result);
168 $result = $this->getSimpleValue($this->$name);
169 if ($result !== null) {
171 $object->$name = $this->nullPlaceholderCheck($result);
/plugin/combo/action/
H A Dpageprotection.php164 $event->result = AUTH_NONE;
173 $event->result = AUTH_NONE;
294 * The result is a list of page id
296 if (is_array($event->result)) {
297 foreach (array_keys($event->result) as $idx) {
302 unset($event->result[$idx]);
309 unset($event->result[$idx]);
/plugin/simplemysqlclient/syntax/
H A Dsimplemysqlclient.php157 $result = $db->store_result ();
158 if ($result instanceof mysqli_result) {
160 $rows = $this->fetch_all( $result);
170 $result->free ();
172 } else if (is_bool ( $result )) {
176 var_dump ( $result );
199 private function fetch_all($result) argument
202 $res = mysqli_fetch_all ( $result, MYSQLI_ASSOC );
204 for ($res = array(); $tmp = mysqli_fetch_array($result, MYSQLI_ASSOC);) $res[] = $tmp;
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DXmlDeserializationVisitor.php163 $result = [];
166 $result[$k] = $this->navigator->accept($v, $entryType);
169 return $result;
203 $result = [];
206 $result[] = $this->navigator->accept($v, $type['params'][0]);
209 return $result;
217 $result = [];
227 $result[$k] = $this->navigator->accept($v, $entryType);
230 return $result;
/plugin/todo/syntax/
H A Dlist.php218 * @param array &$data - Reference to the result data structure
488 $result = array($date, '');
491 $result = array('', '!');
493 $result = array('', '*');
497 $result = array($date, '*');
501 $result[0] = $date;
505 $result[0] = date_format($newdate, 'Y-m-d');
507 $result[0] = date('Y-m-d');
510 } else { $result[0] = date('Y-m-d'); }
512 return $result;
[all...]
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dextension.cache.sqlite3.php139 $result = $stmt->execute();
140 list($version) = $result->fetchArray();
200 list($result) = $res->fetchArray();
201 if (count($result) > 0 ) {
202 return unserialize(base64_decode($result));
/plugin/findologicxmlexport/vendor/sebastian/exporter/src/
H A DExporter.php57 $result = array();
70 $result[] = '*RECURSION*';
74 $result[] = sprintf(
82 $result[] = $exporter->shortenedExport($value);
86 return implode(', ', $result);
/plugin/dwspecialist/
H A Dsyntax.php70 if (preg_match('#(\n)( {2,}[/*]?)([ ]*[^\n<]*)<special([^\n>]*)>#', $match, $result)) {
71 } elseif (preg_match('#(\n)( {2,}[/*]?)([ ]*)<special([^\n>]*)>#', $match, $result)) {
72 } elseif (preg_match('#(\n)([ ]*)()<special([^\n>]*)>#', $match, $result)) {
73 } elseif (preg_match('#()()([^\n<])<special([^\n>]*)>#', $match, $result)) {
75 return array($state, $result);
/plugin/ifauthex/lib/
H A Dtokenizer.php31 $result = mb_ereg_search_pos($matchRegex, $matchRegexOptions);
32 list($matchOfsBytes, $matchLenBytes) = $result;
44 $result = preg_match($matchRegex, $text, $matches, PREG_OFFSET_CAPTURE, $position);
45 if ($result === 0) {
47 } elseif ($result === false) {
/plugin/shell/
H A DP0wnyShell.php221 $result = [
230 $result['username'] = base64_encode($username);
235 $result['username'] = base64_encode($pwuid['name']);
241 $result['hostname'] = base64_encode($hostname);
244 return $result;
/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js644 var result;
658 result = self.hashPart(result);
661 result = whole_match;
663 return result;
741 return self.hashPart(result);
799 var result;
809 result = self.hashPart(result);
813 result = whole_match;
816 return result;
936 result = self.hashBlock("<" + list_type + ">\n" + result + "</" + list_type + ">");
[all …]
/plugin/openid/Auth/OpenID/
H A DConsumer.php809 if (Auth_OpenID::isFailure($result)) {
810 return $result;
823 if (Auth_OpenID::isFailure($result)) {
824 return $result;
827 $endpoint = $result;
831 if (Auth_OpenID::isFailure($result)) {
832 return $result;
837 if (Auth_OpenID::isFailure($result)) {
838 return $result;
1280 $result = null;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTest.php19 * @param PHPUnit_Framework_TestResult $result
23 public function run(PHPUnit_Framework_TestResult $result = null); argument
/plugin/davcard/vendor/sabre/vobject/lib/
H A DComponent.php189 $result = array();
192 $result[] = $child;
196 return $result;
224 $result = array();
238 $result[$key] = $child;
243 reset($result);
244 return $result;
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DComponent.php189 $result = array();
192 $result[] = $child;
196 return $result;
224 $result = array();
238 $result[$key] = $child;
243 reset($result);
244 return $result;
/plugin/davcal/vendor/sabre/vobject/lib/
H A DComponent.php189 $result = array();
192 $result[] = $child;
196 return $result;
224 $result = array();
238 $result[$key] = $child;
243 reset($result);
244 return $result;
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/
H A DPlugin.php710 $result = null;
728 if ($result) {
729 return $result;
778 foreach ($results as $result) {
1268 $result = [];
1277 $result[] = $currentPrincipal;
1316 foreach ($result as $item) {
1374 new DAV\Xml\Response\MultiStatus($result),
1396 $result = [];
1432 return $result;
[all …]
/plugin/icalevents/vendor/sabre/vobject/bin/
H A Dgenerateicalendardata.php77 $result = $calendar->validate(); variable
78 if ($result) {
80 fwrite(STDERR, print_r($result, true));
/plugin/pdb/classes/
H A D_NCBI.php37 $result = $this->HttpClient->get(sprintf($this->eSearchURL,urlencode($db),urlencode($term)));
38 if (preg_match("/error/i",$result)){return NULL;}
39 return $result;
/plugin/authjoomla/
H A Dauth.php52 $result = $this->_query($sql, ['session' => $session]);
53 if ($result === false) return;
56 $_SERVER['REMOTE_USER'] = $result[0]['user'];
/plugin/pubchem/classes/
H A D_NCBI.php34 * Retrieve Search result
37 $result = $this->HttpClient->get(sprintf($this->eSearchURL,urlencode($db),urlencode($term)));
38 if (preg_match("/error/i",$result)){return NULL;}
39 return $result;
/plugin/pubmed/classes/
H A D_NCBI.php34 * Retrieve Search result
37 $result = $this->HttpClient->get(sprintf($this->eSearchURL,urlencode($db),urlencode($term)));
38 if (preg_match("/error/i",$result)){return NULL;}
39 return $result;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DBufferStream.php108 $result = $this->buffer;
112 $result = substr($this->buffer, 0, $length);
116 return $result;

1...<<31323334353637383940>>...80