-
Introduction
-
Entities
- Company
- Subsidiary
- Location
-
Restaurant
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Please copy the below line | |
$body = preg_replace('/' . preg_quote('<ul id="nav-empty"', '/') . '/', $adminMenu . '<ul id="nav-empty"', $body, 1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$params = Astroid\Framework::getTemplate()->getParams(); | |
$template_layout = $params->get('template_layout', 'wide'); | |
if ($template_layout != 'boxed') return false; | |
$layout_background_image = $params->get('layout_background_image', ''); | |
if (!empty($layout_background_image)) { | |
$style = new Astroid\Helper\Style('body'); | |
$style->addCss('background-image', 'url(' . \JURI::root() . Astroid\Helper\Media::getPath() . '/' . $layout_background_image . ')'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @package Astroid Framework | |
* @author JoomDev https://www.joomdev.com | |
* @copyright Copyright (C) 2009 - 2018 JoomDev. | |
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later | |
*/ | |
// No direct access. | |
defined('_JEXEC') or die; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @package Astroid Framework | |
* @author JoomDev https://www.joomdev.com | |
* @copyright Copyright (C) 2009 - 2018 JoomDev. | |
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later | |
*/ | |
defined('_JEXEC') or die; | |
class AstroidFrameworkConstants { |