@@ 1148-1154 (lines=7) @@ | ||
1145 | */ |
|
1146 | public function core_loaded_and_ready() |
|
1147 | { |
|
1148 | if ($this->request->isAdmin() |
|
1149 | || $this->request->isEeAjax() |
|
1150 | || $this->request->isFrontend() |
|
1151 | ) { |
|
1152 | $this->loader->getShared('EE_Session'); |
|
1153 | } |
|
1154 | do_action('AHEE__EE_System__core_loaded_and_ready'); |
|
1155 | // load_espresso_template_tags |
|
1156 | if (is_readable(EE_PUBLIC . 'template_tags.php') |
|
1157 | && ($this->request->isFrontend() || $this->request->isIframe() || $this->request->isFeed()) |
|
@@ 1162-1164 (lines=3) @@ | ||
1159 | require_once EE_PUBLIC . 'template_tags.php'; |
|
1160 | } |
|
1161 | do_action('AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons'); |
|
1162 | if ($this->request->isAdmin() || $this->request->isFrontend() || $this->request->isIframe()) { |
|
1163 | $this->loader->getShared('EventEspresso\core\services\assets\Registry'); |
|
1164 | } |
|
1165 | } |
|
1166 | ||
1167 |