Home
last modified time | relevance | path

Searched refs:header (Results 151 – 175 of 1105) sorted by relevance

12345678910>>...45

/plugin/s5/ui/flower/
H A Ds5-core.css3 div#header, div#footer, div.slide {position: absolute;}
4 html>body div#header, html>body div#footer, html>body div.slide {position: fixed;}
5 div#header {z-index: 1;}
/plugin/s5/ui/yatil/
H A Ds5-core.css3 div#header, div#footer, div.slide {position: absolute;}
4 html>body div#header, html>body div#footer, html>body div.slide {position: fixed;}
5 div#header {z-index: 1;}
/plugin/s5/ui/pixel/
H A Ds5-core.css3 div#header, div#footer, div.slide {position: absolute;}
4 html>body div#header, html>body div#footer, html>body div.slide {position: fixed;}
5 div#header {z-index: 1;}
/plugin/s5/ui/blue/
H A Ds5-core.css3 div#header, div#footer, div.slide {position: absolute;}
4 html>body div#header, html>body div#footer, html>body div.slide {position: fixed;}
5 div#header {z-index: 1;}
/plugin/authfacebook/lib/HttpClients/
H A DFacebookStreamHttpClient.php87 $header = [];
89 $header[] = $k . ': ' . $v;
92 return implode("\r\n", $header);
/plugin/csstimeline/
H A Dfeed.php62 header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
63 header('Pragma: public');
64 header('Content-Type: application/xml; charset=utf-8');
73 if($conf['allowdebug']) header("X-CacheUsed: $cache");
/plugin/permissioninfo/
H A Dstyle.css6 .piContainer header {
12 .piContainer header h2 {
23 .piContainer header span.piTogglers {
42 .piContainer .users header {
/plugin/ditaa/
H A Daction.php58header('Expires: ' . gmdate("D, d M Y H:i:s", time() + max($conf['cachetime'], 3600)) . ' GMT');
59header('Cache-Control: public, proxy-revalidate, no-transform, max-age=' . max($conf['cachetime'],…
60 header('Pragma: public');
/plugin/pgn4web/pgn4web/
H A Dgotd.php49 header("content-type: application/x-chess-pgn");
50 header("content-disposition: inline; filename=game.pgn");
52 header("expires: " . $expiresDate);
/plugin/datatables/assets/datatables.net-plugins/features/pageResize/
H A DdataTables.pageResize.min.js
/plugin/jukebox/
H A Dlist.php18 header("HTTP/1.0 401 Unauthorized");
24 header("HTTP/1.0 400 Bad Request");
43 header('Content-Type: text/xml; charset=utf-8');
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DNativeMailerHandler.php89 foreach ((array) $headers as $header) {
90 if (strpos($header, "\n") !== false || strpos($header, "\r") !== false) {
93 $this->headers[] = $header;
/plugin/siteexport/inc/
H A Ddebug.php121 header("HTTP/1.0 500 Internal Server Error", true, 500);
122 header("Status: 500 Internal Server Error", true, 500);
159 header("HTTP/1.0 500 Internal Server Error", true, 500);
160 header("Status: 500 Internal Server Error", true, 500);
/plugin/pwaoffline/
H A Daction.php70 header('Content-Type:application/json');
87 header('Content-Type:application/javascript');
97 header('X-DWPLUGIN-PWAOFFLINE-ACT:' . act_clean($ACT));
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/py/
H A Dupload.py79 for header in conn.headers:
80 if not header is None:
81 print '%s: %s' % header
/plugin/combo/resources/theme/default/pages/templates/
H A Dindex.hbs9 {{>page-header-partial}}
16 {{!--No main-header as the index generally contains a cover image
17 If we add the main-header, we will then ends up with 2 images--}}
H A Dholy-medium.yml2 - 'page-header'
4 - 'main-header'
H A Dmedium.yml2 - 'page-header'
4 - 'main-header'
H A Dholy.yml2 - 'page-header'
4 - 'main-header'
/plugin/database2/
H A Dmedia.php262 $header = array_shift( array_slice( $rows, 0, 1 ) ); variable
263 foreach ( $header as $column => $data )
264 $header[$column] = $meta[$column]['label'] ? $meta[$column]['label'] : $column;
267 $data = $db->__csvLine( $header );
348 header( 'Content-Disposition: attachment; filename=' . $name );
437 header( 'Content-Type: ' . $mime );
445 header( 'HTTP/1.1 ' . $e->getCode() . ' ' . $e->getMessage() );
/plugin/combo/ComboStrap/
H A DHttpResponse.php24 * For instance with {@link header()}, the following:
25 * `header("Content-Type: text/html")`
140 // header should before the status
141 // because for instance a `"Location` header changes the status to 302
142 foreach ($this->headers as $header) {
143 header($header);
236 function addHeader(string $header): HttpResponse argument
238 $this->headers[] = $header;
286 * Return the first header valu
[all...]
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DHttpAsset.php70 foreach ($http_response_header as $header) {
71 if (0 === stripos($header, 'Last-Modified: ')) {
72 list(, $mtime) = explode(':', $header, 2);
/plugin/rdplink/
H A Drdp.php2 header("Content-type: application/rdp");
3 header("Content-disposition: attachment; filename=".$_GET['server'].".rdp");
/plugin/authg2fa/
H A DTokenHelper.php46 $header = "# g2fa_secrets.php\n# <?php exit()?>\n# Don't modify the lines above";
47 $header .= "#\n# Userfile\n#\n# Format:\n#\n# login:secret\n\n";
48 if(!io_saveFile($this->_g2fafile, $header, false)) {
/plugin/sectiontoggle/
H A DMobile_Detect.php83 * The User-Agent HTTP header is stored in here.
587 // Vodafone specific header: http://www.seoprinciple.com/mobile-web-community-still-angry-at-vodafone/24/
677 * @param string $userAgent Inject the User-Agent header. If null, will use HTTP_USER_AGENT
740 * Retrieves a particular header. If it doesn't exist, no exception/error is caused.
743 * @param string $header The name of the header to retrieve. Can be HTTP compliant such as
747 * @return string|null The value of the header.
749 public function getHttpHeader($header) argument
752 if (strpos($header, '_') === false) {
753 $header
[all...]

12345678910>>...45