You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PlexShare/fuel/core/classes/lang/json.php

36 lines
684 B

7 years ago
<?php
namespace Fuel\Core;
/**
* JSON Lang file parser
*/
class Lang_Json extends \Lang_File
{
protected $ext = '.json';
/**
* Loads in the given file and parses it.
*
* @param string $file File to load
* @return array
*/
protected function load_file($file)
{
$contents = $this->parse_vars(file_get_contents($file));
return json_decode($contents, true);
}
/**
* Returns the formatted language file contents.
*
* @param array $contents config array
* @return string formatted config file contents
*/
protected function export_format($contents)
{
$this->prep_vars($contents);
return \Format::forge()->to_json($contents, true);
}
}