? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/public_html/old/libraries/rokcommon/RokCommon/Registry/
File Upload :
Current File : /home/admin/public_html/old/libraries/rokcommon/RokCommon/Registry/Format.php

<?php
/**
 * @version   3.2.0 March 4, 2015
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
 * @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
 *
 * derived from JoomlaRTCacheDriver with original copyright and license
 * @copyright	Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */
// No direct access
defined('ROKCOMMON') or die;

/**
 * Abstract Format for RokCommon_Registry
 *
 * @abstract
 * @package		JoomlaRTCacheDriver.Framework
 * @subpackage	Registry
 * @since		1.5
 */
abstract class RokCommon_Registry_Format
{
    protected static $instances;

	/**
	 * Returns a reference to a Format object, only creating it
	 * if it doesn't already exist.
	 *
	 * @param	string	The format to load
	 * @return	object	Registry format handler
	 * @throws	RokCommon_Loader_Exception
	 * @since	1.5
	 */
	public static function getInstance($type)
	{
		// Initialize static variable.

		if (!isset (self::$instances)) {
			self::$instances = array ();
		}

		// Sanitize format type.
		$type = strtoupper(preg_replace('/[^A-Z0-9_]/i', '', $type));
		// Only instantiate the object if it doesn't already exist.
		if (!isset(self::$instances[$type])) {
			// Only load the file the class does not exist.
			$class = 'RokCommon_Registry_Format_'.$type;
			if (!class_exists($class)) {
		        throw new RokCommon_Loader_Exception('Unable to find Registry format ' . $type);
			}
			self::$instances[$type] = new $class();
		}
		return self::$instances[$type];
	}

	/**
	 * Converts an object into a formatted string.
	 *
	 * @param	object	Data Source Object.
	 * @param	array	An array of options for the formatter.
	 * @return	string	Formatted string.
	 * @since	1.5
	 */
	abstract public function objectToString($object, $options = null);

	/**
	 * Converts a formatted string into an object.
	 *
	 * @param	string	Formatted string
	 * @param	array	An array of options for the formatter.
	 * @return	object	Data Object
	 * @since	1.5
	 */
	abstract public function stringToObject($data, $options = null);
}

T1KUS90T
  root-grov@210.1.60.28:~$