public function Page::getAccessLogic in Page Manager 8.4
Same name and namespace in other branches
- 8 src/Entity/Page.php \Drupal\page_manager\Entity\Page::getAccessLogic()
Returns the logic used to compute access, either 'and' or 'or'.
Return value
string The string 'and', or the string 'or'.
Overrides PageInterface::getAccessLogic
File
- src/
Entity/ Page.php, line 231
Class
- Page
- Defines a Page entity class.
Namespace
Drupal\page_manager\EntityCode
public function getAccessLogic() {
return $this->access_logic;
}