Home
last modified time | relevance | path

Searched full:status (Results 51 – 75 of 2855) sorted by relevance

12345678910>>...115

/plugin/structpublish/
H A Dadmin.php47 if (!blank($assignment['pattern']) && !blank($assignment['status'])) {
52 $assignment['status']
65 $assignment['status']
75 $assignment['status']
122 $status = $assignment['status'];
132 'assignment[status]' => $status,
140 echo '<td>' . hsc($status) . '</td>';
150 echo '<select name="assignment[status]">';
[all...]
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Request/
H A DInviteReply.php61 public $status; variable in Sabre\\CalDAV\\Xml\\Request\\InviteReply
70 * @param int $status
72 function __construct($href, $calendarUri, $inReplyTo, $summary, $status) { argument
78 $this->status = $status;
111 $status = null;
125 $status = DAV\Sharing\Plugin::INVITE_ACCEPTED;
128 $status = DAV\Sharing\Plugin::INVITE_DECLINED;
146 return new self($href, $calendarUri, $inReplyTo, $summary, $status);
/plugin/webdav/vendor/sabre/http/lib/
H A DResponseInterface.php15 * Returns the current HTTP status code.
22 * Returns the human-readable status string.
31 * Sets the HTTP status code.
33 * This can be either the full HTTP status code with human readable string,
39 * @param string|int $status
43 function setStatus($status); argument
H A DClient.php217 $status = curl_multi_info_read(
222 if ($status && $status['msg'] === CURLMSG_DONE) {
224 $resourceId = intval($status['handle']);
232 … $curlResult = $this->parseCurlResult(curl_multi_getcontent($status['handle']), $status['handle']);
235 if ($curlResult['status'] === self::STATUS_CURLERROR) {
355 if ($response['status'] === self::STATUS_CURLERROR) {
464 * * status - one of the 3 STATUS constants.
465 * * curl_errno - A curl error number. Only set if status is
467 * * curl_errmsg - A current error message. Only set if status is
472 * status is STATUS_SUCCESS, or STATUS_HTTPERROR
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/
H A DPersonResponse.php32 protected $statusType = Status::class;
78 * @param Status
80 public function setStatus(Status $status) argument
82 $this->status = $status;
85 * @return Status
89 return $this->status;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataflow/
H A DGetTemplateResponse.php26 protected $statusType = Status::class;
62 * @param Status
64 public function setStatus(Status $status) argument
66 $this->status = $status;
69 * @return Status
73 return $this->status;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Firestore/
H A DBatchWriteResponse.php23 protected $statusType = Status::class;
29 * @param Status[]
31 public function setStatus($status) argument
33 $this->status = $status;
36 * @return Status[]
40 return $this->status;
/plugin/icalevents/vendor/sabre/vobject/
H A DREADME.md31 Build status
34 | branch | status |
36 | master | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=master)](https://t…
37 | 3.5 | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=3.5)](https://trav…
38 | 3.4 | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=3.4)](https://trav…
39 | 3.1 | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=3.1)](https://trav…
40 | 2.1 | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=2.1)](https://trav…
41 | 2.0 | [![Build Status](https://travis-ci.org/fruux/sabre-vobject.svg?branch=2.0)](https://trav…
/plugin/webdav/vendor/sabre/vobject/
H A DREADME.md31 Build status
34 | branch | status |
36 | master | [![Build Status](https://travis-ci.org/sabre-io/vobject.svg?branch=master)](https://trav…
37 | 3.5 | [![Build Status](https://travis-ci.org/sabre-io/vobject.svg?branch=3.5)](https://travis-…
38 | 3.4 | [![Build Status](https://travis-ci.org/sabre-io/vobject.svg?branch=3.4)](https://travis-…
39 | 3.1 | [![Build Status](https://travis-ci.org/sabre-io/vobject.svg?branch=3.1)](https://travis-…
40 | 2.1 | [![Build Status](https://travis-ci.org/sabre-io/vobject.svg?branch=2.1)](https://travis-…
41 | 2.0 | [![Build Status](https://travis-ci.org/sabre-io/vobject.svg?branch=2.0)](https://travis-…
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/Status/Selector/
H A DAttribute.php9 namespace PhpCss\Scanner\Status\Selector {
16 class Attribute extends Scanner\Status {
57 * Check if token ends status
67 * Get new (sub)status if needed.
70 * @return Scanner\Status|NULL
72 public function getNewStatus(Scanner\Token $token): ?Scanner\Status {
75 return new Scanner\Status\Text\Single();
77 return new Scanner\Status\Text\Double();
/plugin/dokumicrobugtracker/
H A Dsyntax.php49 $data['status'] = 'ALL';
58 if ($splitparam[0]=='status')
59 {$data['status'] = strtoupper($splitparam[1]);
133 $bugs[$bug_id]['status'] = "New";
179 $status = $this->_get_one_value($bug,'status');
180 if ($status != '')
181 if ($this->_get_one_value($count,$status)=='')
182 {$count[$status] = array(1,$status);}
184 {$count[$status][0] += 1;}
317 if (($data['status']=='ALL') || (strtoupper($bug['status'])==$data['status'])) {
[all …]
/plugin/davcal/vendor/sabre/http/lib/
H A DResponseDecorator.php31 * Returns the current HTTP status code.
43 * Returns the human-readable status string.
55 * Sets the HTTP status code.
57 * This can be either the full HTTP status code with human readable string,
63 * @param string|int $status
66 function setStatus($status) { argument
68 $this->inner->setStatus($status);
H A DResponseInterface.php15 * Returns the current HTTP status code.
22 * Returns the human-readable status string.
31 * Sets the HTTP status code.
33 * This can be either the full HTTP status code with human readable string,
39 * @param string|int $status
43 function setStatus($status); argument
/plugin/photogallery/
H A DpgFetch.php57 'status' => $STATUS,
62 // handle the file status
66 if($data['status'] > 300 && $data['status'] <= 304) {
70 // send any non 200 status
71 if($data['status'] != 200) {
75 if($data['status'] > 203) {
108 // // send any non 200 status
109 if($STATUS != 200) {
110 http_status($STATUS, $STATUSMESSAGE);
125 * WRITE: FILE, array( STATUS, STATUSMESSAGE )
[all …]
/plugin/issuelinks/classes/
H A DIssue.php21 private $status = ''; variable in dokuwiki\\plugin\\issuelinks\\classes\\Issue
93 $this->status = $issue['status'];
250 return $this->status;
254 * @param string $status
258 public function setStatus($status) argument
260 $this->status = $status;
431 if ($status) {
466 * @param string|null $status
472 if ($status === null) {
475 $status = strtolower($status);
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Element/
H A DResponseTest.php55 <d:status>HTTP/1.1 200 OK</d:status>
61 <d:status>HTTP/1.1 404 Not Found</d:status>
94 <d:status>HTTP/1.1 200 OK</d:status>
127 <d:status>HTTP/1.1 200 OK</d:status>
157 <d:status>HTTP/1.1 200 OK</d:status>
191 <d:status>HTTP/1.1 200 OK</d:status>
228 <d:status>HTTP/1.1 404 Not Found</d:status>
/plugin/mikioplugin/
H A Dscript.js338 var status = quizRef.attr('data-status');
339 status = status.replace('$1', '1');
340 status = status.replace('$2', quizRef.children('.mikiop-quiz-item').length);
341 quizRef.find('.mikiop-quiz-status-text').html(status);
379 parent.find('.mikiop-quiz-status-number').html(i + 1);
381 var status
[all...]
/plugin/fetchmedia/action/
H A Dajax.php60 if (is_array($result) && isset($result['status'])) {
61 http_status($result['status']);
85 …return ['status' => 409, 'status_text' => sprintf($this->getLang('error: page is locked'), $lock)];
91 return ['status' => 500, 'status_text' => hsc($e->getMessage())];
113 return ['status' => $code, 'status_text' => $textstatus];
118 … return ['status' => 404, 'status_text' => $this->getLang('error: windows share missing')];
133 … return ['status' => 500, 'status_text' => $this->getLang('error: failed to open stream')];
146 … return ['status' => 500, 'status_text' => $this->getLang('error: failed to download file')];
158 return ['status' => 400, 'status_text' => $textstatus];
161 // report status?
[all …]
/plugin/do/
H A Daction.php53 // toggle status of a single task
78 echo json_encode($status);
81 // read status for a bunch of tasks
89 $status = array();
93 $status = $hlp->getAllPageStatuses($page);
97 echo json_encode($status);
137 $status = '';
147 $status = $hlp->toggleTaskStatus($pageid, $_REQUEST['do_md5']);
148 if ($status == -2) {
153 if ($status) {
[all …]
/plugin/bugzillaint/helper/
H A Dbugzillaclient.php81 $options['status'] = explode(',', 'UNCO');
84 $options['status'] = explode(',', 'RESO');
87 $options['status'] = explode(',', 'VERI');
90 $options['status'] = explode(',', 'CLO');
131 $options['status'] = explode(',', $m[1]);
153 // fix status
173 }, $options['status'] );
258 } else if ( $e == 'status' ) {
259 $fields[] = 'status';
301 // fetch status of all dependencies
[all …]
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DWebDriverResponse.php10 private $status; variable in Facebook\\WebDriver\\Remote\\WebDriverResponse
33 return $this->status;
37 * @param int $status
40 public function setStatus($status) argument
42 $this->status = $status;
/plugin/jplayer/vendor/happyworm/jplayer/dist/add-on/
H A Djquery.jplayer.inspector.js153 if(config.visible) { // Update the status, if inspector open.
243 var formatType = $(this).data("jPlayerInspector").jPlayer.data("jPlayer").status.formatType;
244 jPlayerInfo += "<p><code>status.formatType = '" + formatType + "'</code><br />";
251 …jPlayerInfo += "<p><code>status.src = '" + $(this).data("jPlayerInspector").jPlayer.data("jPlayer"…
253 jPlayerInfo += "<p><code>status.media = {<br />";
254 for(prop in $(this).data("jPlayerInspector").jPlayer.data("jPlayer").status.media) {
260 …jPlayerInfo += "<code>status.videoWidth = '" + $(this).data("jPlayerInspector").jPlayer.data("jPla…
261 …jPlayerInfo += " | <code>status.videoHeight = '" + $(this).data("jPlayerInspector").jPlayer.data("…
262 …jPlayerInfo += "<br /><code>status.width = '" + $(this).data("jPlayerInspector").jPlayer.data("jPl…
263 …jPlayerInfo += " | <code>status.height = '" + $(this).data("jPlayerInspector").jPlayer.data("jPlay…
[all …]
H A Djquery.jplayer.inspector.min.js2status.formatType;b+="<p><code>status.formatType = '"+d+"'</code><br />",b+=d?"<code>Browser canPl…
/plugin/jplayer/vendor/happyworm/jplayer/src/javascript/add-on/
H A Djquery.jplayer.inspector.js153 if(config.visible) { // Update the status, if inspector open.
243 var formatType = $(this).data("jPlayerInspector").jPlayer.data("jPlayer").status.formatType;
244 jPlayerInfo += "<p><code>status.formatType = '" + formatType + "'</code><br />";
251 …jPlayerInfo += "<p><code>status.src = '" + $(this).data("jPlayerInspector").jPlayer.data("jPlayer"…
253 jPlayerInfo += "<p><code>status.media = {<br />";
254 for(prop in $(this).data("jPlayerInspector").jPlayer.data("jPlayer").status.media) {
260 …jPlayerInfo += "<code>status.videoWidth = '" + $(this).data("jPlayerInspector").jPlayer.data("jPla…
261 …jPlayerInfo += " | <code>status.videoHeight = '" + $(this).data("jPlayerInspector").jPlayer.data("…
262 …jPlayerInfo += "<br /><code>status.width = '" + $(this).data("jPlayerInspector").jPlayer.data("jPl…
263 …jPlayerInfo += " | <code>status.height = '" + $(this).data("jPlayerInspector").jPlayer.data("jPlay…
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAV/Browser/
H A DPropFindAll.php66 * If status is not supplied, the status will default to 200 for non-null
71 * @param int $status
74 function set($propertyName, $value, $status = null) { argument
76 if (is_null($status)) {
77 $status = is_null($value) ? 404 : 200;
79 $this->result[$propertyName] = [$status, $value];
96 * Returns the current status code for a property name.
111 * Returns all propertynames that have a 404 status, and thus don't have a

12345678910>>...115