Home
last modified time | relevance | path

Searched full:status (Results 1 – 25 of 2343) sorted by relevance

12345678910>>...94

/plugin/webdav/vendor/sabre/http/lib/
H A DResponse.php84 * HTTP status code
88 protected $status; variable in Sabre\\HTTP\\Response
91 * HTTP status text
100 * @param string|int $status
106 if (!is_null($status)) $this->setStatus($status);
120 return $this->status;
138 * Sets the HTTP status code.
146 * @param string|int $status
150 function setStatus($status) { argument
152 if (ctype_digit($status) || is_int($status)) {
[all …]
/plugin/redirect2/
H A Daction.php66 * @param int $status redirect status, 301 or 302
141 $status = 301;
183 $status = $map->pattern[$checkID]['status'];
205 $status = $redirect['status'];
244 $status = $map->pattern[$checkID]['status'];
248 $event->data['status'] = $status;
267 $status = $redirect['status'];
271 $event->data['status'] = $status;
296 $status = $data['status'];
297 return array('status' => $status, 'destination' => $destID);
[all …]
/plugin/combo/vendor/carica/phpcss/src/PhpCss/
H A DScanner.php15 * The actual result depends on the status, the status
22 * Scanner status object
23 * @var Scanner\Status
38 * Constructor, set status object
40 * @param Scanner\Status $status
42 public function __construct(Scanner\Status $status) { argument
43 $this->_status = $status;
106 _delegate(array& $target, Scanner\\Status $status) global() argument
[all...]
/plugin/authgooglesheets/vendor/psr/http-message/src/
H A DResponseInterface.php12 * - Status code and reason phrase
23 * Gets the response status code.
28 * @return int Status code.
37 * status code.
41 * updated status and reason phrase.
44 * @link http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
47 * provided status code; if none is provided, implementations MAY
55 * Gets the response reason phrase associated with the status code.
60 * listed in the IANA HTTP Status Code Registry) for the response's
61 * status code.
[all …]
/plugin/davcal/vendor/sabre/http/lib/
H A DResponse.php84 * HTTP status code
88 protected $status; variable in Sabre\\HTTP\\Response
91 * HTTP status text
100 * @param string|int $status
107 if (!is_null($status)) $this->setStatus($status);
121 return $this->status;
139 * Sets the HTTP status code.
147 * @param string|int $status
151 function setStatus($status) { argument
153 if (ctype_digit($status) || is_int($status)) {
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/dist/jplayer/
H A Djquery.jplayer.min.js2status.srcSet&&b.jPlayer("pause")})},a.jPlayer.timeFormat={showHour:!1,showMin:!0,showSec:!0,padHo… class in a.jPlayer
3status.media.poster!==b.poster;this._resetMedia(),this._resetGate(),this._resetActive(),this.andro…
H A Djquery.jplayer.js1602 this.status.remaining = this.status.duration - this.status.currentTime;
1638 this.status.remaining = this.status.duration - this.status.currentTime;
1640 this.status.readyState = 4; // status.readyState;
1643 this.status.ended = false; // status.ended;
1782 this.status.seekPercent = status.seekPercent;
1785 this.status.currentTime = status.currentTime;
1786 this.status.duration = status.duration;
1787 this.status.remaining = status.duration - status.currentTime;
1789 this.status.videoWidth = status.videoWidth;
1790 this.status.videoHeight = status.videoHeight;
[all …]
/plugin/task/syntax/
H A Dtask.php112 $this->_tablerow('status', $status, $renderer);
156 * Returns the status cell contents
158 function _getStatus($user, &$status) { argument
162 $status = $this->task['status'];
168 if ($status < 3) $ret = $this->_statusMenu(array(-1, 0, 1, 2, 3), $status);
170 if ($status == 0) {
172 } elseif ($status == 3) {
179 return '<abbr class="status" title="'.$this->my->_vstatus($status).'">'. $ret .'</abbr>';
186 function _statusMenu($options, $status) { argument
212 // Select status from drop down list
[all …]
/plugin/authucenter/lib/uc_client/control/
H A Duser.php73 return $status;
76 return $status;
93 return $status;
102 return $status;
118 $status = -4;
132 $status = -1;
134 $status = -2;
136 $status = -3;
164 return $status;
178 if($status) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dtestdox-xml.phpt19 …usTest" methodName="testSuccess" prettifiedClassName="Status" prettifiedMethodName="Success" statu…
20 …usTest" methodName="testFailure" prettifiedClassName="Status" prettifiedMethodName="Failure" statu…
21 …tatusTest" methodName="testError" prettifiedClassName="Status" prettifiedMethodName="Error" status
22 …t" methodName="testIncomplete" prettifiedClassName="Status" prettifiedMethodName="Incomplete" stat…
23 …usTest" methodName="testSkipped" prettifiedClassName="Status" prettifiedMethodName="Skipped" statu…
24 …tatusTest" methodName="testRisky" prettifiedClassName="Status" prettifiedMethodName="Risky" status
25 …usTest" methodName="testWarning" prettifiedClassName="Status" prettifiedMethodName="Warning" statu…
/plugin/gtime/gtlib/asn1/gt/
H A DGTCertTokenResponse.php30 * status PKIStatusInfo,
40 private $status; variable in GTCertTokenResponse
66 $status = new PKIStatusInfo();
67 $status->decode($object->getObjectAt(0));
69 $this->status = $status;
106 * @return PKIStatusInfo status
109 return $this->status;
113 * Gets the status code.
115 * @return int status code
118 return $this->status->getStatus();
[all …]
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Element/
H A DResponse.php30 * Propertylist, ordered by HTTP status code
37 * The HTTP status for an entire response.
50 * within an array with keys representing HTTP status codes
53 * have a http status code.
122 if ($status = $this->getHTTPStatus()) {
123 …$writer->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusC…
132 if (!$properties || (!ctype_digit($status) && !is_int($status))) {
138 …$writer->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusC…
236 $status = $elem['value']['{DAV:}status'];
237 list(, $status, ) = explode(' ', $status, 3);
[all …]
/plugin/task/
H A Daction.php137 * Changes the status of a task
143 $status = $_REQUEST['status'];
144 $status = trim($status);
145 if (!is_numeric($status) || ($status < -1) || ($status > 4)) {
148 $message = str_replace('%status%', $status, $message);
164 if ($task['status'] == $status) {
179 if ($responsible && ($status == 4)) {
187 if (!$responsible && $status != 1 && $status != 4) {
222 $oldstatus = $task['status'];
223 $task['status'] = $status;
[all …]
H A Dhelper.php105 if ($task['status'] != 1 && $task['status'] != 2) continue;
117 if (($task['status'] < 0) || ($task['status'] > 2)) continue;
138 'status' => $this->statusLabel($task['status']),
197 if (!isset($data['status'])) { // make sure we don't overwrite status
199 $data['status'] = $current['status'];
222 switch ($status) {
329 $text = str_replace('@STATUS@', $this->statusLabel($task['status']), $text);
367 $ret .= 'STATUS:'.$this->_vstatus($task['status']).CRLF;
393 * Returns VTODO status
395 function _vstatus($status) { argument
[all …]
/plugin/gtime/gtlib/asn1/tsp/
H A DTSPTimeStampResp.php30 * status PKIStatusInfo,
42 private $status; variable in TSPTimeStampResp
68 $status = new PKIStatusInfo();
69 $status->decode($object->getObjectAt(0));
71 $this->status = $status;
99 * Gets the status.
101 * @return PKIStatusInfo status
104 return $this->status;
108 * Gets the status code.
110 * @return int status code
[all …]
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Exception/
H A DInvalidCharacterException.php4 * Exception thrown if a scanner status finds does not find a
14 use PhpCss\Scanner\Status; alias
18 * Exception thrown if a scanner status finds does not
29 /** @var Status $status scanner status */
35 * @param Status $status
37 public function __construct(string $buffer, int $offset, Status $status) { argument
[all...]
/plugin/structpublish/meta/
H A DAssignments.php69 * @param string $status
72 public function addPattern($pattern, $user, $status) argument
75 $sql = 'REPLACE INTO structpublish_assignments_patterns (pattern, user, status) VALUES (?,?,?)';
76 $ok = (bool) $this->sqlite->query($sql, [$pattern, $user, $status]);
107 * @param string $status
110 public function removePattern($pattern, $user, $status) argument
113 $sql = 'DELETE FROM structpublish_assignments_patterns WHERE pattern = ? AND user = ? AND status = ?';
114 $ok = (bool) $this->sqlite->query($sql, [$pattern, $user, $status]);
120 $sql = 'SELECT pid FROM structpublish_assignments WHERE user = ? AND status = ?';
121 $pagerows = $this->sqlite->queryAll($sql, [$user, $status]);
187 assignPage($page, $user = null, $status = null) global() argument
200 deassignPage($page, $user, $status) global() argument
[all...]
H A DRevision.php24 protected $status; variable in dokuwiki\\plugin\\structpublish\\meta\\Revision
46 $this->status = Constants::STATUS_DRAFT;
49 $this->statusCol = $this->schema->findColumn('status');
59 $this->status = $values[$this->statusCol->getColref() - 1]->getRawValue();
73 if ($this->status === Constants::STATUS_PUBLISHED) {
111 * Get the current status of this revision
117 return $this->status;
121 * Set the current status of this revision
123 * @param string $status
125 public function setStatus($status)
124 setStatus($status) global() argument
[all...]
/plugin/jplayer/components/jplayer/
H A Djplayer-built.js1602 this.status.remaining = this.status.duration - this.status.currentTime;
1638 this.status.remaining = this.status.duration - this.status.currentTime;
1640 this.status.readyState = 4; // status.readyState;
1643 this.status.ended = false; // status.ended;
1782 this.status.seekPercent = status.seekPercent;
1785 this.status.currentTime = status.currentTime;
1786 this.status.duration = status.duration;
1787 this.status.remaining = status.duration - status.currentTime;
1789 this.status.videoWidth = status.videoWidth;
1790 this.status.videoHeight = status.videoHeight;
[all …]
/plugin/jplayer/components/jplayer/dist/jplayer/
H A Djquery.jplayer.js1602 this.status.remaining = this.status.duration - this.status.currentTime;
1638 this.status.remaining = this.status.duration - this.status.currentTime;
1640 this.status.readyState = 4; // status.readyState;
1643 this.status.ended = false; // status.ended;
1782 this.status.seekPercent = status.seekPercent;
1785 this.status.currentTime = status.currentTime;
1786 this.status.duration = status.duration;
1787 this.status.remaining = status.duration - status.currentTime;
1789 this.status.videoWidth = status.videoWidth;
1790 this.status.videoHeight = status.videoHeight;
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/src/javascript/jplayer/
H A Djquery.jplayer.js1602 this.status.remaining = this.status.duration - this.status.currentTime;
1638 this.status.remaining = this.status.duration - this.status.currentTime;
1640 this.status.readyState = 4; // status.readyState;
1643 this.status.ended = false; // status.ended;
1782 this.status.seekPercent = status.seekPercent;
1785 this.status.currentTime = status.currentTime;
1786 this.status.duration = status.duration;
1787 this.status.remaining = status.duration - status.currentTime;
1789 this.status.videoWidth = status.videoWidth;
1790 this.status.videoHeight = status.videoHeight;
[all …]
/plugin/gtime/gtlib/asn1/cmp/
H A DPKIStatusInfo.php30 * status PKIStatus,
93 private $status; variable in PKIStatusInfo
143 * Gets the status code.
145 * @return int status code
148 return $this->status;
152 * Sets the status code.
154 * @param int $status
157 public function setStatus($status) { argument
158 $this->status = $status;
162 * Gets the status message.
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Element/
H A DResponse.php30 * Propertylist, ordered by HTTP status code
37 * The HTTP status for an entire response.
53 * have a http status code.
122 if ($status = $this->getHTTPStatus()) {
123 …$writer->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusC…
129 if (!$properties || (!ctype_digit($status) && !is_int($status))) {
134 …$writer->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusC…
217 $status = $elem['value']['{DAV:}status'];
218 list(, $status, ) = explode(' ', $status, 3);
220 $propertyLists[$status] = $properties;
[all …]
/plugin/task/lang/en/
H A Dlang.php22 $lang['status'] = 'Status';
31 $lang['mail_changedtask'] = 'Task status changed';
50 …cvd_invalid_status'] = 'Plugin Task: Received invalid value for "status". Value is "%status%".';
52 $lang['msg_nothing_changed'] = 'Plugin Task: no change for "status".';
55 $lang['msg_not_logged_in'] = 'Plugin Task: you need to be logged in to change the status!';
56 …g['msg_status_changed'] = 'Plugin Task: "status" has been changed from "%oldstatus%" to "%
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/Status/
H A DSelector.php3 * Scanner Status "Selector"
9 namespace PhpCss\Scanner\Status {
14 * Scanner Status Selector recognizes token of a css selector sequence.
16 class Selector extends Scanner\Status {
65 * Check if token ends status
75 * Get new (sub)status if needed.
78 * @return Scanner\Status|NULL
80 public function getNewStatus(Scanner\Token $token): ?Scanner\Status {
83 return new Scanner\Status\Text\Single();
85 return new Scanner\Status\Tex
[all...]

12345678910>>...94