mirror of
https://github.com/getgrav/grav.git
synced 2026-03-05 03:51:50 +01:00
Added CompiledJsonFile
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
# v1.1.9
|
||||
## xx/xx/2016
|
||||
|
||||
1. [](#new)
|
||||
* Added a `CompiledJsonFile` object to better handle Json files.
|
||||
1. [](#improved)
|
||||
* Added `getTaxonomyItemKeys` to the Taxonomy object [#1124](https://github.com/getgrav/grav/issues/1124)
|
||||
* Added a `redirect_me` Twig function [#1124](https://github.com/getgrav/grav/issues/1124)
|
||||
|
||||
16
system/src/Grav/Common/File/CompiledJsonFile.php
Normal file
16
system/src/Grav/Common/File/CompiledJsonFile.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Grav.Common.File
|
||||
*
|
||||
* @copyright Copyright (C) 2014 - 2016 RocketTheme, LLC. All rights reserved.
|
||||
* @license MIT License; see LICENSE file for details.
|
||||
*/
|
||||
|
||||
namespace Grav\Common\File;
|
||||
|
||||
use RocketTheme\Toolbox\File\JsonFile;
|
||||
|
||||
class CompiledJsonFile extends JsonFile
|
||||
{
|
||||
use CompiledFile;
|
||||
}
|
||||
Reference in New Issue
Block a user