Spade
Mini Shell
| Directory:~$ /proc/self/root/home/lmsyaran/www/joomla5/components/com_fabrik/views/form/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* HTML Form view class
*
* @package Joomla
* @subpackage Fabrik
* @copyright Copyright (C) 2005-2020 Media A-Team, Inc. - All rights
reserved.
* @license GNU/GPL http://www.gnu.org/copyleft/gpl.html
*/
// No direct access
defined('_JEXEC') or die('Restricted access');
jimport('joomla.application.component.view');
require_once JPATH_SITE .
'/components/com_fabrik/views/form/view.base.php';
/**
* HTML Form view class
*
* @package Joomla
* @subpackage Fabrik
* @since 3.0.6
*/
class FabrikViewForm extends FabrikViewFormBase
{
/**
* Main setup routine for displaying the form/detail view
*
* @param string $tpl template
*
* @return void
*/
public function display($tpl = null)
{
if (parent::display($tpl) !== false)
{
$this->output();
if (!$this->app->isClient('administrator'))
{
$this->state = $this->get('State');
$model = $this->getModel();
$this->params = $this->state->get('params');
$row = $model->getData();
$w = new FabrikWorker;
if ($this->params->get('menu-meta_description'))
{
$desc =
$w->parseMessageForPlaceHolder($this->params->get('menu-meta_description'),
$row);
$this->doc->setDescription($desc);
}
if ($this->params->get('menu-meta_keywords'))
{
$keywords =
$w->parseMessageForPlaceHolder($this->params->get('menu-meta_keywords'),
$row);
$this->doc->setMetadata('keywords', $keywords);
}
if ($this->params->get('robots'))
{
$this->doc->setMetadata('robots',
$this->params->get('robots'));
}
}
}
}
}