ManyManyThroughQueryManipulator
class ManyManyThroughQueryManipulator implements DataQueryManipulator
Injected into DataQuery to augment getFinalisedQuery() with a join table
Traits
Methods
An implementation of the factory method, allows you to create an instance of a class
Creates a class instance by the "singleton" design pattern.
Build query manipulator for a given join table. Additional parameters (foreign key, etc) will be inferred at evaluation from query parameters set via the ManyManyThroughList
No description
No description
No description
No description
No description
Gets ID key name for foreign key component
Gets Class key name for foreign key component (or null if none)
No description
Get has_many relationship between parent and join table (for a given DataQuery)
Calculate the query parameters that should be inherited from the base many_many to the nested has_many list.
Get name of join table alias for use in queries.
Invoked prior to getFinalisedQuery()
Invoked after getFinalisedQuery()
No description
No description
No description
No description
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();
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).
at line 65
__construct(string $joinClass, string $localKey, string $foreignKey, string $foreignClass = null, string $parentClass = null)
Build query manipulator for a given join table. Additional parameters (foreign key, etc) will be inferred at evaluation from query parameters set via the ManyManyThroughList
at line 85
string
getJoinClass()
at line 94
$this
setJoinClass(mixed $joinClass)
at line 103
string
getLocalKey()
at line 112
$this
setLocalKey(string $localKey)
at line 121
string
getForeignKey()
at line 131
string
getForeignIDKey()
Gets ID key name for foreign key component
at line 145
string|null
getForeignClassKey()
Gets Class key name for foreign key component (or null if none)
at line 157
$this
setForeignKey(string $foreignKey)
at line 169
HasManyList
getParentRelationship(DataQuery $query)
Get has_many relationship between parent and join table (for a given DataQuery)
at line 199
mixed
extractInheritableQueryParameters(DataQuery $query)
Calculate the query parameters that should be inherited from the base many_many to the nested has_many list.
at line 222
string
getJoinAlias()
Get name of join table alias for use in queries.
at line 234
beforeGetFinalisedQuery(DataQuery $dataQuery, array $queriedColumns = [], SQLSelect $sqlSelect)
Invoked prior to getFinalisedQuery()
at line 284
afterGetFinalisedQuery(DataQuery $dataQuery, array $queriedColumns = [], SQLSelect $sqlQuery)
Invoked after getFinalisedQuery()