class UnpublishFileMutationCreator extends PublicationMutationCreator implements i18nEntityProvider

Traits

A class that can be instantiated or replaced via DI

Methods

static Injectable
create(array $args)

An implementation of the factory method, allows you to create an instance of a class

static Injectable
singleton(string $class = null)

Creates a class instance by the "singleton" design pattern.

__construct(Manager $manager = null)

No description

array
attributes()

No description

Type|callable
type()

No description

array
args()

No description

array
getAttributes()

Merge all attributes for this query (type, attributes, resolvers, etc).

array
toArray()

Convert the Fluent instance to an array.

mixed
__get(string $key)

Dynamically retrieve the value of an attribute.

bool
__isset(string $key)

Dynamically check if an attribute is set.

mixed
resolve(mixed $object, array $args, mixed $context, ResolveInfo $info)

No description

array
provideI18nEntities()

Returns the list of provided translations for this object.

Details

in Injectable at line 26
static Injectable create(array $args)

An implementation of the factory method, allows you to create an instance of a class

This method will defer class substitution to the Injector API, which can be customised via the Config API to declare substitution classes.

This can be called in one of two ways - either calling via the class directly, or calling on Object and passing the class name as the first parameter. The following are equivalent: $list = DataList::create('SiteTree'); $list = SiteTree::get();

Parameters

array $args

Return Value

Injectable

in Injectable at line 43
static Injectable singleton(string $class = null)

Creates a class instance by the "singleton" design pattern.

It will always return the same instance for this class, which can be used for performance reasons and as a simple way to access instance methods which don't rely on instance data (e.g. the custom SilverStripe static handling).

Parameters

string $class Optional classname to create, if the called class should not be used

Return Value

Injectable The singleton instance

in FieldCreator at line 29
__construct(Manager $manager = null)

Parameters

Manager $manager Used to retrieve types (including the one returned from this creator), and nest field types regardless of instantiation of their creators.

array attributes()

Return Value

array

Type|callable type()

Return Value

Type|callable

array args()

Return Value

array

in FieldCreator at line 72
array getAttributes()

Merge all attributes for this query (type, attributes, resolvers, etc).

Return Value

array

in FieldCreator at line 97
array toArray()

Convert the Fluent instance to an array.

Return Value

array

in FieldCreator at line 109
mixed __get(string $key)

Dynamically retrieve the value of an attribute.

Parameters

string $key

Return Value

mixed

in FieldCreator at line 122
bool __isset(string $key)

Dynamically check if an attribute is set.

Parameters

string $key

Return Value

bool

mixed resolve(mixed $object, array $args, mixed $context, ResolveInfo $info)

Parameters

mixed $object
array $args
mixed $context
ResolveInfo $info

Return Value

mixed

at line 71
array provideI18nEntities()

Returns the list of provided translations for this object.

Note: Pluralised forms are always returned in array format.

Example usage: class MyTestClass implements i18nEntityProvider { public function provideI18nEntities() { $entities = []; foreach($this->config()->get('my_static_array') as $key => $value) { $entities["MyTestClass.my_static_array_{$key}"] = $value; } $entities["MyTestClass.PLURALS"] = [ 'one' => 'A test class', 'other' => '{count} test classes', ] return $entities; } }

Example usage in {@link DataObject->provideI18nEntities()}.

You can ask textcollector to add the provided entity to a different module. Simply wrap the returned value for any item in an array with the format: [ 'default' => $defaultValue, 'module' => $module ]

class MyTestClass implements i18nEntityProvider { public function provideI18nEntities() { $entities = [ 'MyOtherModuleClass.MYENTITY' => [ 'default' => $value, 'module' => 'myothermodule', ] ]; } return $entities; }

Return Value

array Map of keys to default values, which are strings in the default case, and array-form for pluralisations.