mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Added comments to DataObject->can()
This commit is contained in:
parent
764c5a842b
commit
7e5da27443
@ -2371,6 +2371,7 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity
|
||||
|
||||
$groupList = implode(', ', $groups->column("ID"));
|
||||
|
||||
// TODO Fix relation table hardcoding
|
||||
$query = new SQLQuery(
|
||||
"\"Page_Can$perm\".PageID",
|
||||
array("\"Page_Can$perm\""),
|
||||
@ -2379,6 +2380,7 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity
|
||||
$permissionCache[$memberID][$perm] = $query->execute()->column();
|
||||
|
||||
if($perm == "View") {
|
||||
// TODO Fix relation table hardcoding
|
||||
$query = new SQLQuery("\"SiteTree\".\"ID\"", array(
|
||||
"\"SiteTree\"",
|
||||
"LEFT JOIN \"Page_CanView\" ON \"Page_CanView\".\"PageID\" = \"SiteTree\".\"ID\""
|
||||
|
Loading…
Reference in New Issue
Block a user