File manager - Edit - /home/jardides/www/Jardi-design/j37/components/com_content/layouts/field/prepare/modal_article.php
Back
<?php /** * @package Joomla.Site * @subpackage com_content * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; if (!key_exists('field', $displayData)) { return; } $field = $displayData['field']; $value = $field->value; if (!$value) { return; } JLoader::import('joomla.application.component.model'); JModelLegacy::addIncludePath(JPATH_BASE . '/components/com_content/models', 'ContentModel'); $model = JModelLegacy::getInstance('Article', 'ContentModel'); // If the article is not found an error is thrown we need to hold the // old error handler $errorHandler = JError::getErrorHandling(E_ERROR); // Ignoring all errors JError::setErrorHandling(E_ERROR, 'ignore'); // Fetching the article $article = $model->getItem($value); // Restoreing the old error handler JError::setErrorHandling(E_ERROR, $errorHandler['mode'], $errorHandler['options']); if ($article instanceof JException) { return; } echo htmlentities($article->title);
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings