| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867 | 
							- <?php
 
- namespace Grav\Plugin;
 
- use Grav\Common\Data;
 
- use Grav\Common\File\CompiledYamlFile;
 
- use Grav\Common\GPM\GPM;
 
- use Grav\Common\Grav;
 
- use Grav\Common\Language\LanguageCodes;
 
- use Grav\Common\Page\Page;
 
- use Grav\Common\Page\Pages;
 
- use Grav\Common\Plugins;
 
- use Grav\Common\Themes;
 
- use Grav\Common\Uri;
 
- use Grav\Common\User\User;
 
- use RocketTheme\Toolbox\File\File;
 
- use RocketTheme\Toolbox\File\JsonFile;
 
- use RocketTheme\Toolbox\File\LogFile;
 
- use RocketTheme\Toolbox\ResourceLocator\UniformResourceLocator;
 
- use RocketTheme\Toolbox\Session\Message;
 
- use RocketTheme\Toolbox\Session\Session;
 
- use Symfony\Component\Yaml\Yaml;
 
- define('LOGIN_REDIRECT_COOKIE', 'grav-login-redirect');
 
- class Admin
 
- {
 
-     /**
 
-      * @var Grav
 
-      */
 
-     public $grav;
 
-     /**
 
-      * @var Uri $uri
 
-      */
 
-     protected $uri;
 
-     /**
 
-      * @var array
 
-      */
 
-     protected $pages = array();
 
-     /**
 
-      * @var Session
 
-      */
 
-     protected $session;
 
-     /**
 
-      * @var Data\Blueprints
 
-      */
 
-     protected $blueprints;
 
-     /**
 
-      * @var string
 
-      */
 
-     public $base;
 
-     /**
 
-      * @var string
 
-      */
 
-     public $location;
 
-     /**
 
-      * @var string
 
-      */
 
-     public $route;
 
-     /**
 
-      * @var User
 
-      */
 
-     public $user;
 
-     /**
 
-      * @var Lang
 
-      */
 
-     protected $lang;
 
-     /**
 
-      * @var Grav\Common\GPM\GPM
 
-      */
 
-     protected $gpm;
 
-     /**
 
-      * Constructor.
 
-      *
 
-      * @param Grav   $grav
 
-      * @param string $base
 
-      * @param string $location
 
-      * @param string $route
 
-      */
 
-     public function __construct(Grav $grav, $base, $location, $route)
 
-     {
 
-         $this->grav = $grav;
 
-         $this->base = $base;
 
-         $this->location = $location;
 
-         $this->route = $route;
 
-         $this->uri = $this->grav['uri'];
 
-         $this->session = $this->grav['session'];
 
-         $this->user = $this->grav['user'];
 
-         $language = $this->grav['language'];
 
-         if ($language->enabled()) {
 
-             $this->multilang = true;
 
-             $this->languages_enabled = $this->grav['config']->get('system.languages.supported', []);
 
-             //Set the currently active language for the admin
 
-             $language = $this->grav['uri']->param('lang');
 
-             if (!$language) {
 
-                 if (!$this->session->admin_lang) $this->session->admin_lang = 'en';
 
-                 $language = $this->session->admin_lang;
 
-             }
 
-             $this->grav['language']->setActive($language ?: 'en');
 
-         } else {
 
-             $this->grav['language']->setActive('en');
 
-             $this->multilang = false;
 
-         }
 
-     }
 
-     /**
 
-      * Get current session.
 
-      *
 
-      * @return Session
 
-      */
 
-     public function session()
 
-     {
 
-         return $this->session;
 
-     }
 
-     /**
 
-      * Add message into the session queue.
 
-      *
 
-      * @param string $msg
 
-      * @param string $type
 
-      */
 
-     public function setMessage($msg, $type = 'info')
 
-     {
 
-         /** @var Message $messages */
 
-         $messages = $this->grav['messages'];
 
-         $messages->add($msg, $type);
 
-     }
 
-     /**
 
-      * Fetch and delete messages from the session queue.
 
-      *
 
-      * @param string $type
 
-      *
 
-      * @return array
 
-      */
 
-     public function messages($type = null)
 
-     {
 
-         /** @var Message $messages */
 
-         $messages = $this->grav['messages'];
 
-         return $messages->fetch($type);
 
-     }
 
-     /**
 
-      * Authenticate user.
 
-      *
 
-      * @param  array $form Form fields.
 
-      *
 
-      * @return bool
 
-      */
 
-     public function authenticate($form)
 
-     {
 
-         if (!$this->user->authenticated && isset($form['username']) && isset($form['password'])) {
 
-             $user = User::load($form['username']);
 
-             //default to english if language not set
 
-             if (empty($user->language)) {
 
-                 $user->set('language', 'en');
 
-             }
 
-             if ($user->exists()) {
 
-                 $user->authenticated = true;
 
-                 // Authenticate user.
 
-                 $result = $user->authenticate($form['password']);
 
-                 if ($result) {
 
-                     $this->user = $this->session->user = $user;
 
-                     /** @var Grav $grav */
 
-                     $grav = $this->grav;
 
-                     $this->setMessage($this->translate('PLUGIN_ADMIN.LOGIN_LOGGED_IN', [$this->user->language]), 'info');
 
-                     $redirect_route = $this->uri->route();
 
-                     $grav->redirect($redirect_route);
 
-                 }
 
-             }
 
-         }
 
-         return $this->authorize();
 
-     }
 
-     /**
 
-      * Checks user authorisation to the action.
 
-      *
 
-      * @param  string $action
 
-      *
 
-      * @return bool
 
-      */
 
-     public function authorize($action = 'admin.login')
 
-     {
 
-         $action = (array)$action;
 
-         foreach ($action as $a) {
 
-             if ($this->user->authorize($a)) {
 
-                 return true;
 
-             }
 
-         }
 
-         return false;
 
-     }
 
-     /**
 
-      * Returns edited page.
 
-      *
 
-      * @param bool $route
 
-      *
 
-      * @return Page
 
-      */
 
-     public function page($route = false)
 
-     {
 
-         $path = $this->route;
 
-         if ($route && !$path) {
 
-             $path = '/';
 
-         }
 
-         if (!isset($this->pages[$path])) {
 
-             $this->pages[$path] = $this->getPage($path);
 
-         }
 
-         return $this->pages[$path];
 
-     }
 
-     /**
 
-      * Returns blueprints for the given type.
 
-      *
 
-      * @param string $type
 
-      *
 
-      * @return Data\Blueprint
 
-      */
 
-     public function blueprints($type)
 
-     {
 
-         if ($this->blueprints === null) {
 
-             $this->blueprints = new Data\Blueprints('blueprints://');
 
-         }
 
-         return $this->blueprints->get($type);
 
-     }
 
-     /**
 
-      * Gets configuration data.
 
-      *
 
-      * @param string $type
 
-      * @param array  $post
 
-      *
 
-      * @return Data\Data|null
 
-      * @throws \RuntimeException
 
-      */
 
-     public function data($type, $post = array())
 
-     {
 
-         static $data = [];
 
-         if (isset($data[$type])) {
 
-             return $data[$type];
 
-         }
 
-         if (!$post) {
 
-             $post = isset($_POST) ? $_POST : [];
 
-         }
 
-         switch ($type) {
 
-             case 'configuration':
 
-             case 'system':
 
-                 $type = 'system';
 
-                 $blueprints = $this->blueprints("config/{$type}");
 
-                 $config = $this->grav['config'];
 
-                 $obj = new Data\Data($config->get('system'), $blueprints);
 
-                 $obj->merge($post);
 
-                 $file = CompiledYamlFile::instance($this->grav['locator']->findResource("config://{$type}.yaml"));
 
-                 $obj->file($file);
 
-                 $data[$type] = $obj;
 
-                 break;
 
-             case 'settings':
 
-             case 'site':
 
-                 $type = 'site';
 
-                 $blueprints = $this->blueprints("config/{$type}");
 
-                 $config = $this->grav['config'];
 
-                 $obj = new Data\Data($config->get('site'), $blueprints);
 
-                 $obj->merge($post);
 
-                 $file = CompiledYamlFile::instance($this->grav['locator']->findResource("config://{$type}.yaml"));
 
-                 $obj->file($file);
 
-                 $data[$type] = $obj;
 
-                 break;
 
-             case 'login':
 
-                 $data[$type] = null;
 
-                 break;
 
-             default:
 
-                 /** @var UniformResourceLocator $locator */
 
-                 $locator = $this->grav['locator'];
 
-                 $filename = $locator->findResource("config://{$type}.yaml", true, true);
 
-                 $file = CompiledYamlFile::instance($filename);
 
-                 if (preg_match('|plugins/|', $type)) {
 
-                     /** @var Plugins $plugins */
 
-                     $plugins = $this->grav['plugins'];
 
-                     $obj = $plugins->get(preg_replace('|plugins/|', '', $type));
 
-                     $obj->merge($post);
 
-                     $obj->file($file);
 
-                     $data[$type] = $obj;
 
-                 } elseif (preg_match('|themes/|', $type)) {
 
-                     /** @var Themes $themes */
 
-                     $themes = $this->grav['themes'];
 
-                     $obj = $themes->get(preg_replace('|themes/|', '', $type));
 
-                     $obj->merge($post);
 
-                     $obj->file($file);
 
-                     $data[$type] = $obj;
 
-                 } elseif (preg_match('|users/|', $type)) {
 
-                     $obj = User::load(preg_replace('|users/|', '', $type));
 
-                     $obj->merge($post);
 
-                     $data[$type] = $obj;
 
-                 } else {
 
-                     throw new \RuntimeException("Data type '{$type}' doesn't exist!");
 
-                 }
 
-         }
 
-         return $data[$type];
 
-     }
 
-     /**
 
-      * Get the GPM instance
 
-      *
 
-      * @return GPM The GPM instance
 
-      */
 
-     public function gpm()
 
-     {
 
-         if (!$this->gpm) {
 
-             try {
 
-                 $this->gpm = new GPM();
 
-             } catch (\Exception $e) {}
 
-         }
 
-         return $this->gpm;
 
-     }
 
-     /**
 
-      * Converts dot notation to array notation.
 
-      *
 
-      * @param  string $name
 
-      *
 
-      * @return string
 
-      */
 
-     public function field($name)
 
-     {
 
-         $path = explode('.', $name);
 
-         return array_shift($path) . ($path ? '[' . implode('][', $path) . ']' : '');
 
-     }
 
-     /**
 
-      * Get all routes.
 
-      *
 
-      * @return array
 
-      */
 
-     public function routes($unique = false)
 
-     {
 
-         /** @var Pages $pages */
 
-         $pages = $this->grav['pages'];
 
-         if ($unique) {
 
-             $routes = array_unique($pages->routes());
 
-         } else {
 
-             $routes = $pages->routes();
 
-         }
 
-         return $routes;
 
-     }
 
-     
 
-     /**
 
-      * Count the pages
 
-      *
 
-      * @return array
 
-      */
 
-     public function countPages()
 
-     {
 
-         $routable = $this->grav['pages']->all()->routable();
 
-         $modular = $this->grav['pages']->all()->modular();
 
-         return count($routable) + count($modular);
 
-     }
 
-     /**
 
-      * Get All template types
 
-      *
 
-      * @return array
 
-      */
 
-     public function types()
 
-     {
 
-         return Pages::types();
 
-     }
 
-     /**
 
-      * Get All modular template types
 
-      *
 
-      * @return array
 
-      */
 
-     public function modularTypes()
 
-     {
 
-         return Pages::modularTypes();
 
-     }
 
-     /**
 
-      * Get all plugins.
 
-      *
 
-      * @return array
 
-      */
 
-     public function plugins($local = true)
 
-     {
 
-         $gpm = $this->gpm();
 
-         if (!$gpm) {
 
-             return;
 
-         }
 
-         return $local ? $gpm->getInstalledPlugins() : $gpm->getRepositoryPlugins()->filter(function (
 
-             $package,
 
-             $slug
 
-         ) use ($gpm) {
 
-             return !$gpm->isPluginInstalled($slug);
 
-         });
 
-     }
 
-     /**
 
-      * Get all themes.
 
-      *
 
-      * @return array
 
-      */
 
-     public function themes($local = true)
 
-     {
 
-         $gpm = $this->gpm();
 
-         if (!$gpm) {
 
-             return;
 
-         }
 
-         
 
-         return $local ? $gpm->getInstalledThemes() : $gpm->getRepositoryThemes()->filter(function ($package, $slug) use
 
-         (
 
-             $gpm
 
-         ) {
 
-             return !$gpm->isThemeInstalled($slug);
 
-         });
 
-     }
 
-     /**
 
-      * Get log file for fatal errors.
 
-      *
 
-      * @return string
 
-      */
 
-     public function logs()
 
-     {
 
-         if (!isset($this->logs)) {
 
-             $file = LogFile::instance($this->grav['locator']->findResource('log://exception.log'));
 
-             $content = $file->content();
 
-             $this->logs = array_reverse($content);
 
-         }
 
-         return $this->logs;
 
-     }
 
-     /**
 
-      * Used by the Dashboard in the admin to display the X latest pages
 
-      * that have been modified
 
-      *
 
-      * @param  integer $count number of pages to pull back
 
-      *
 
-      * @return array
 
-      */
 
-     public function latestPages($count = 10)
 
-     {
 
-         /** @var Pages $pages */
 
-         $pages = $this->grav['pages'];
 
-         $latest = array();
 
-         foreach ($pages->routes() as $url => $path) {
 
-             $page = $pages->dispatch($url, true);
 
-             if ($page && $page->routable()) {
 
-                 $latest[$page->route()] = ['modified' => $page->modified(), 'page' => $page];
 
-             }
 
-         }
 
-         // sort based on modified
 
-         uasort($latest, function ($a, $b) {
 
-             if ($a['modified'] == $b['modified']) {
 
-                 return 0;
 
-             }
 
-             return ($a['modified'] > $b['modified']) ? -1 : 1;
 
-         });
 
-         // build new array with just pages in it
 
-         $list = array();
 
-         foreach ($latest as $item) {
 
-             $list[] = $item['page'];
 
-         }
 
-         return array_slice($list, 0, $count);
 
-     }
 
-     /**
 
-      * Get log file for fatal errors.
 
-      *
 
-      * @return string
 
-      */
 
-     public function logEntry()
 
-     {
 
-         $file = File::instance($this->grav['locator']->findResource("log://{$this->route}.html"));
 
-         $content = $file->content();
 
-         return $content;
 
-     }
 
-     /**
 
-      * Search in the logs when was the latest backup made
 
-      *
 
-      * @return array Array containing the latest backup information
 
-      */
 
-     public function lastBackup()
 
-     {
 
-         $file = JsonFile::instance($this->grav['locator']->findResource("log://backup.log"));
 
-         $content = $file->content();
 
-         if (empty($content)) {
 
-             return [
 
-                 'days'        => '∞',
 
-                 'chart_fill'  => 100,
 
-                 'chart_empty' => 0
 
-             ];
 
-         }
 
-         $backup = new \DateTime();
 
-         $backup->setTimestamp($content['time']);
 
-         $diff = $backup->diff(new \DateTime());
 
-         $days = $diff->days;
 
-         $chart_fill = $days > 30 ? 100 : round($days / 30 * 100);
 
-         return [
 
-             'days'        => $days,
 
-             'chart_fill'  => $chart_fill,
 
-             'chart_empty' => 100 - $chart_fill
 
-         ];
 
-     }
 
-     /**
 
-      * Returns the page creating it if it does not exist.
 
-      *
 
-      * @param $path
 
-      *
 
-      * @return Page
 
-      */
 
-     public function getPage($path)
 
-     {
 
-         /** @var Pages $pages */
 
-         $pages = $this->grav['pages'];
 
-         if ($path && $path[0] != '/') {
 
-             $path = "/{$path}";
 
-         }
 
-         $page = $path ? $pages->dispatch($path, true) : $pages->root();
 
-         if (!$page) {
 
-             $slug = basename($path);
 
-             if ($slug == '') {
 
-                 return null;
 
-             }
 
-             $ppath = str_replace('\\', '/' , dirname($path));
 
-             // Find or create parent(s).
 
-             $parent = $this->getPage($ppath != '/' ? $ppath : '');
 
-             // Create page.
 
-             $page = new Page;
 
-             $page->parent($parent);
 
-             $page->filePath($parent->path() . '/' . $slug . '/' . $page->name());
 
-             // Add routing information.
 
-             $pages->addPage($page, $path);
 
-             // Set if Modular
 
-             $page->modularTwig($slug[0] == '_');
 
-             // Determine page type.
 
-             if (isset($this->session->{$page->route()})) {
 
-                 // Found the type and header from the session.
 
-                 $data = $this->session->{$page->route()};
 
-                 $header = ['title' => $data['title']];
 
-                 if (isset($data['visible'])) {
 
-                     if ($data['visible'] == '' || $data['visible']) {
 
-                         // if auto (ie '')
 
-                         $children = $page->parent()->children();
 
-                         foreach ($children as $child) {
 
-                             if ($child->order()) {
 
-                                 // set page order
 
-                                 $page->order(1000);
 
-                                 break;
 
-                             }
 
-                         }
 
-                     }
 
-                 }
 
-                 if ($data['name'] == 'modular') {
 
-                     $header['body_classes'] = 'modular';
 
-                 }
 
-                 $name = $page->modular() ? str_replace('modular/', '', $data['name']) : $data['name'];
 
-                 $page->name($name . '.md');
 
-                 $page->header($header);
 
-                 $page->frontmatter(Yaml::dump((array)$page->header(), 10, 2, false));
 
-             } else {
 
-                 // Find out the type by looking at the parent.
 
-                 $type = $parent->childType() ? $parent->childType() : $parent->blueprints()->get('child_type',
 
-                     'default');
 
-                 $page->name($type . CONTENT_EXT);
 
-                 $page->header();
 
-             }
 
-             $page->modularTwig($slug[0] == '_');
 
-         }
 
-         return $page;
 
-     }
 
-     /**
 
-      * Return the languages available in the admin
 
-      *
 
-      * @return array
 
-      */
 
-     public static function adminLanguages()
 
-     {
 
-         $languages = [];
 
-         $lang_data = Yaml::parse(file_get_contents(__DIR__ . '/../languages.yaml'));
 
-         foreach ($lang_data as $lang => $values) {
 
-             $languages[$lang] = LanguageCodes::getNativeName($lang);
 
-         }
 
-         return $languages;
 
-     }
 
-     /**
 
-      * Return the languages available in the site
 
-      *
 
-      * @return array
 
-      */
 
-     public static function siteLanguages()
 
-     {
 
-         $languages = [];
 
-         $lang_data = Grav::instance()['config']->get('system.languages.supported', []);
 
-         foreach ($lang_data as $index => $lang) {
 
-             $languages[$lang] = LanguageCodes::getNativeName($lang);
 
-         }
 
-         return $languages;
 
-     }
 
-     /**
 
-      * Static helper method to return current route.
 
-      *
 
-      * @return string
 
-      */
 
-     public static function route()
 
-     {
 
-         $pages = Grav::instance()['pages'];
 
-         $route = '/' . ltrim(Grav::instance()['admin']->route, '/');
 
-         $page = $pages->dispatch($route);
 
-         $parent_route = null;
 
-         if ($page) {
 
-             $parent = $page->parent();
 
-             $parent_route = $parent->rawRoute();
 
-         }
 
-         return $parent_route;
 
-     }
 
-     /**
 
-      * Static helper method to return the last used page name
 
-      *
 
-      * @return string
 
-      */
 
-     public static function getLastPageName()
 
-     {
 
-         return Grav::instance()['session']->lastPageName ?: 'default';
 
-     }
 
-     /**
 
-      * Static helper method to return the last used page route
 
-      *
 
-      * @return string
 
-      */
 
-     public static function getLastPageRoute()
 
-     {
 
-         return Grav::instance()['session']->lastPageRoute ?: self::route();
 
-     }
 
-     /**
 
-      * Determine if the plugin or theme info passed is from Team Grav
 
-      *
 
-      * @param object $info Plugin or Theme info object
 
-      *
 
-      * @return bool
 
-      */
 
-     public function isTeamGrav($info)
 
-     {
 
-         if (isset($info['author']['name']) && $info['author']['name'] == 'Team Grav') {
 
-             return true;
 
-         } else {
 
-             return false;
 
-         }
 
-     }
 
-     /**
 
-      * Renders phpinfo
 
-      *
 
-      * @return string The phpinfo() output
 
-      */
 
-     function phpinfo() {
 
-         if (function_exists('phpinfo')) {
 
-             ob_start();
 
-             phpinfo();
 
-             $pinfo = ob_get_contents();
 
-             ob_end_clean();
 
-             $pinfo = preg_replace('%^.*<body>(.*)</body>.*$%ms', '$1', $pinfo);
 
-             return $pinfo;
 
-         } else {
 
-             return 'phpinfo() method is not available on this server.';
 
-         }
 
-     }
 
-     /**
 
-      * Translate a string to the user-defined language
 
-      *
 
-      * @param $string the string to translate
 
-      */
 
-     public function translate($string) {
 
-         return $this->_translate($string, [$this->grav['user']->authenticated ? $this->grav['user']->language : 'en']);
 
-     }
 
-     public function _translate($args, Array $languages = null, $array_support = false, $html_out = false)
 
-     {
 
-         if (is_array($args)) {
 
-             $lookup = array_shift($args);
 
-         } else {
 
-             $lookup = $args;
 
-             $args = [];
 
-         }
 
-         if ($lookup) {
 
-             if (empty($languages) || reset($languages) == null) {
 
-                 if ($this->grav['config']->get('system.languages.translations_fallback', true)) {
 
-                     $languages = $this->grav['language']->getFallbackLanguages();
 
-                 } else {
 
-                     $languages = (array)$this->grav['language']->getDefault();
 
-                 }
 
-             }
 
-         } else {
 
-             $languages = ['en'];
 
-         }
 
-         foreach ((array)$languages as $lang) {
 
-             $translation = $this->grav['language']->getTranslation($lang, $lookup, $array_support);
 
-             if (!$translation) {
 
-                 $language = $this->grav['language']->getDefault() ?: 'en';
 
-                 $translation = $this->grav['language']->getTranslation($language, $lookup, $array_support);
 
-             }
 
-             if ($translation) {
 
-                 if (count($args) >= 1) {
 
-                     return vsprintf($translation, $args);
 
-                 } else {
 
-                     return $translation;
 
-                 }
 
-             }
 
-         }
 
-         return $lookup;
 
-     }
 
-     function dateformat2Kendo($php_format)
 
-     {
 
-         $SYMBOLS_MATCHING = array(
 
-             // Day
 
-             'd' => 'dd',
 
-             'D' => 'ddd',
 
-             'j' => 'd',
 
-             'l' => 'dddd',
 
-             'N' => '',
 
-             'S' => '',
 
-             'w' => '',
 
-             'z' => '',
 
-             // Week
 
-             'W' => '',
 
-             // Month
 
-             'F' => 'MMMM',
 
-             'm' => 'MM',
 
-             'M' => 'MMM',
 
-             'n' => 'M',
 
-             't' => '',
 
-             // Year
 
-             'L' => '',
 
-             'o' => '',
 
-             'Y' => 'yyyy',
 
-             'y' => 'yy',
 
-             // Time
 
-             'a' => 'tt',
 
-             'A' => 'tt',
 
-             'B' => '',
 
-             'g' => 'h',
 
-             'G' => 'H',
 
-             'h' => 'hh',
 
-             'H' => 'HH',
 
-             'i' => 'mm',
 
-             's' => 'ss',
 
-             'u' => ''
 
-         );
 
-         $js_format = "";
 
-         $escaping = false;
 
-         for($i = 0; $i < strlen($php_format); $i++)
 
-         {
 
-             $char = $php_format[$i];
 
-             if($char === '\\') // PHP date format escaping character
 
-             {
 
-                 $i++;
 
-                 if($escaping) $js_format .= $php_format[$i];
 
-                 else $js_format .= '\'' . $php_format[$i];
 
-                 $escaping = true;
 
-             }
 
-             else
 
-             {
 
-                 if($escaping) { $js_format .= "'"; $escaping = false; }
 
-                 if(isset($SYMBOLS_MATCHING[$char]))
 
-                     $js_format .= $SYMBOLS_MATCHING[$char];
 
-                 else
 
-                     $js_format .= $char;
 
-             }
 
-         }
 
-         return $js_format;
 
-     }
 
- }
 
 
  |