mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
#3236 Added missing config definitions (private statics)
This commit is contained in:
parent
ea7e0e8e3b
commit
dfc01457d6
@ -4,6 +4,7 @@ namespace SilverStripe\Core\Manifest;
|
|||||||
|
|
||||||
use SilverStripe\Core\Config\Config;
|
use SilverStripe\Core\Config\Config;
|
||||||
use Psr\SimpleCache\CacheInterface;
|
use Psr\SimpleCache\CacheInterface;
|
||||||
|
use SilverStripe\Core\Config\Configurable;
|
||||||
use SilverStripe\Core\Convert;
|
use SilverStripe\Core\Convert;
|
||||||
use SilverStripe\Core\Injector\Injector;
|
use SilverStripe\Core\Injector\Injector;
|
||||||
|
|
||||||
@ -24,6 +25,13 @@ use SilverStripe\Core\Injector\Injector;
|
|||||||
*/
|
*/
|
||||||
class VersionProvider
|
class VersionProvider
|
||||||
{
|
{
|
||||||
|
use Configurable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
private static $modules;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets a comma delimited string of package titles and versions
|
* Gets a comma delimited string of package titles and versions
|
||||||
*
|
*
|
||||||
|
@ -107,6 +107,15 @@ abstract class DBField extends ViewableData implements DBIndexable
|
|||||||
*/
|
*/
|
||||||
private static $index = false;
|
private static $index = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The filters to be used by graphql form field front-end
|
||||||
|
*
|
||||||
|
* e.g [ contains, gt, lt, gte, lte ]
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
private static $graphql_default_filters;
|
||||||
|
|
||||||
private static $casting = [
|
private static $casting = [
|
||||||
'ATT' => 'HTMLFragment',
|
'ATT' => 'HTMLFragment',
|
||||||
'CDATA' => 'HTMLFragment',
|
'CDATA' => 'HTMLFragment',
|
||||||
|
Loading…
Reference in New Issue
Block a user