ShellBanner
System:Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Software:Apache. PHP/5.3.6-13ubuntu3.10
ID:uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
Safe Mode:OFF
Open_Basedir:OFF
Freespace:27.12 GB of 70.42 GB (38.52%)
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,

/ http/ guitar/ includes/ - dr-xr-xr-x

Directory:
Viewing file:     date.inc (4.4 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * @file
 * Initializes the list of date formats and their locales.
 */

/**
 * Provides a default system list of date formats for system_date_formats().
 */
function system_default_date_formats() {
  
$formats = array();

  
// Short date formats.
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'Y-m-d H:i',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'm/d/Y - H:i',
    
'locales' => array('en-us'),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'd/m/Y - H:i',
    
'locales' => array('en-gb''en-hk''en-ie''el-gr''es-es''fr-be''fr-fr''fr-lu''it-it''nl-be''pt-pt'),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'Y/m/d - H:i',
    
'locales' => array('en-ca''fr-ca''no-no''sv-se'),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'd.m.Y - H:i',
    
'locales' => array('de-ch''de-de''de-lu''fi-fi''fr-ch''is-is''pl-pl''ro-ro''ru-ru'),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'm/d/Y - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'd/m/Y - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'Y/m/d - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'M j Y - H:i',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'j M Y - H:i',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'Y M j - H:i',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'M j Y - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'j M Y - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'short',
    
'format' => 'Y M j - g:ia',
    
'locales' => array(),
  );

  
// Medium date formats.
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'D, Y-m-d H:i',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'D, m/d/Y - H:i',
    
'locales' => array('en-us'),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'D, d/m/Y - H:i',
    
'locales' => array('en-gb''en-hk''en-ie''el-gr''es-es''fr-be''fr-fr''fr-lu''it-it''nl-be''pt-pt'),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'D, Y/m/d - H:i',
    
'locales' => array('en-ca''fr-ca''no-no''sv-se'),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'F j, Y - H:i',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'j F, Y - H:i',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'Y, F j - H:i',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'D, m/d/Y - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'D, d/m/Y - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'D, Y/m/d - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'F j, Y - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'j F Y - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'Y, F j - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'medium',
    
'format' => 'j. F Y - G:i',
    
'locales' => array(),
  );

  
// Long date formats.
  
$formats[] = array(
    
'type' => 'long',
    
'format' => 'l, F j, Y - H:i',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'long',
    
'format' => 'l, j F, Y - H:i',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'long',
    
'format' => 'l, Y,  F j - H:i',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'long',
    
'format' => 'l, F j, Y - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'long',
    
'format' => 'l, j F Y - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'long',
    
'format' => 'l, Y,  F j - g:ia',
    
'locales' => array(),
  );
  
$formats[] = array(
    
'type' => 'long',
    
'format' => 'l, j. F Y - G:i',
    
'locales' => array(),
  );

  return 
$formats;
}
Command:
Quick Commands:
Upload:
[Read-Only] Max size: 100MB
PHP Filesystem: <@ Ú
Search File:
regexp
Create File:
Overwrite [Read-Only]
View File:
Mass Defacement:
[+] Main Directory: [+] Defacement Url:
LmfaoX Shell - Private Build [BETA] - v0.1 -; Generated: 0.3164 seconds