You are here

public function Page::getAccessLogic in Page Manager 8

Same name and namespace in other branches
  1. 8.4 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 236
Contains \Drupal\page_manager\Entity\Page.

Class

Page
Defines a Page entity class.

Namespace

Drupal\page_manager\Entity

Code

public function getAccessLogic() {
  return $this->access_logic;
}