Home
last modified time | relevance | path

Searched refs:result (Results 226 – 250 of 1997) sorted by last modified time

12345678910>>...80

/plugin/statistics/inc/
H A DStatisticsGraph.class.php76 $result = $this->hlp->Query()->$query($this->tlimit, $this->start, 0, false);
79 foreach($result as $row) {
106 $result = $this->hlp->Query()->history($this->tlimit, $info, $interval);
110 foreach($result as $row) {
184 $result = $this->hlp->Query()->viewport($this->tlimit, 0, 100);
189 foreach($result as $row) {
217 $result = $this->hlp->Query()->resolution($this->tlimit, 0, 100);
222 foreach($result as $row) {
269 $result = $this->hlp->Query()->dashboardviews($this->tlimit, $hours);
275 foreach($result a
[all...]
/plugin/farmer/css/
H A Dchosen.less179 .chosen-container .chosen-results li.active-result {
183 .chosen-container .chosen-results li.disabled-result {
202 .chosen-container .chosen-results li.group-result {
315 .chosen-container-multi .chosen-drop .result-selected {
/plugin/farmer/
H A Dhelper.php158 $result = symlink(readlink($source), $destination);
160 return $result;
165 $result = copy($source, $destination);
167 return $result;
/plugin/const/
H A Dclass.evalmath.php555 $result = EvalMath_Functions::$function_name( ...array_reverse( $args ) );
556 if ( false === $result ) {
559 $stack->push( $result );
/plugin/sql2wiki/syntax/
H A Dquery.php109 $result = Csv::csv2arr($data['value']);
111 if (count($result) == 0) {
132 $headers = array_shift($result);
142 foreach ($result as $row) {
/plugin/sql2wiki/action/
H A Dsqlite.php158 $result = $sqliteDb->queryAll($query, $params);
159 if (isset($result[0])) { // generate header if any row exists
160 array_unshift($result, array_keys($result[0]));
162 $query_result_csv = "\n" . Csv::arr2csv($result); // "\n" to wrap the <sql2wiki> tag
163 $logger_details['results'][] = $result;
/plugin/approve/action/
H A Dmigration.php40 $event->result = call_user_func([$this, "migration$to"], $event->data);
/plugin/structacl/
H A Daction.php77 $event->result = AUTH_UPLOAD;
/plugin/notification/action/
H A Dmigration.php40 $event->result = call_user_func([$this, "migration$to"], $event->data);
/plugin/ireadit/action/
H A Dcache.php45 $event->result = false;
H A Dmigration.php42 $event->result = call_user_func([$this, "migration$to"], $event->data);
/plugin/odt/ODT/css/
H A Dcssdocument.php85 $result = array_search($class,
87 if ($result === false) {
103 $result = array_search($element,
105 if ($result === false) {
200 $result = array();
214 $result [$att_name] = $att_value;
217 return $result;
H A Dcssimportnew.php434 $result = strpos ($separators, $sign);
438 if ($result === false || $in_brackets == true) {
792 $result = $this->selector->matches($element, $specificity);
794 return $result;
987 … $result = $this->importFromStringInternal ($contents_in_media, $at_rule_name, $nested_processed);
988 if ( $result !== true ) {
/plugin/odt/action/
H A Dexport.php256 $result = array();
259 search($result, $this->config->getParam('datadir'), 'search_allpages', $opts, $dir);
262 if(count($result) > 0) {
264 usort($result, array($this, '_datesort'));
266 usort($result, array($this, '_pagenamesort'));
270 foreach($result as $item) {
/plugin/odt/helper/
H A Dconfig.php28 $result = array();
29 $result[] = array(
34 $result[] = array(
40 $result[] = array(
46 $result[] = array(
52 $result[] = array(
58 $result[] = array(
64 $result[] = array(
70 $result[] = array(
76 $result[] = array(
[all …]
H A Dcsscolors.php29 $result = array();
30 $result[] = array(
36 $result[] = array(
42 return $result;
H A Dcssimport.php1196 … $result = $this->importFromStringInternal ($contents_in_media, $new_media, $nested_processed);
1197 if ( $result !== true ) {
H A Ddwcssloader.php29 $result = array();
30 $result[] = array(
38 return $result;
H A Dstylefactory.php32 $result = array();
33 $result[] = array(
42 $result[] = array(
51 $result[] = array(
60 $result[] = array(
68 $result[] = array(
76 $result[] = array(
84 return $result;
H A Dunits.php30 $result = array();
31 $result[] = array(
37 return $result;
/plugin/odt/renderer/
H A Dpagepdf.php95 exec ($command, $output, $result);
96 if ($result) {
103 $message = str_replace('%errorcode%', $result, $message);
/plugin/openid/Auth/OpenID/
H A DAX.php639 $result = $this->_checkMode($ax_args);
640 if (Auth_OpenID_AX::isError($result)) {
641 return $result;
651 $result = Auth_OpenID_AX_checkAlias($alias);
653 if (Auth_OpenID_AX::isError($result)) {
654 return $result;
920 $result = parent::parseExtensionArgs($ax_args);
922 if (Auth_OpenID_AX::isError($result)) {
923 return $result;
956 $result = $obj->parseExtensionArgs($ax_args);
[all …]
H A DAssociation.php470 $result = [];
478 $result[] = $pair;
480 $result[] = $pair;
485 return $result;
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 …]
H A DDiscover.php616 $result = Auth_OpenID_discoverXRI($uri, $fetcher);
618 $result = Auth_OpenID_discoverURI($uri, $fetcher);
625 list($new_uri, $endpoints) = $result;
633 $result = [$new_uri, $http_endpoints];
636 return $result;

12345678910>>...80