0byt3m1n1-V2
Path:
/
home
/
phangnga
/
administrator
/
components
/
com_finder
/
views
/
statistics
/
[
Home
]
File: view.html.php
<?php /** * @package Joomla.Administrator * @subpackage com_finder * * @copyright Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('_JEXEC') or die; /** * Statistics view class for Finder. * * @since 2.5 */ class FinderViewStatistics extends JViewLegacy { /** * The index statistics * * @var JObject */ protected $data; /** * Method to display the view. * * @param string $tpl A template file to load. [optional] * * @return mixed A string if successful, otherwise a JError object. * * @since 2.5 */ public function display($tpl = null) { // Load the view data. $this->data = $this->get('Data'); // Check for errors. if (count($errors = $this->get('Errors'))) { JError::raiseError(500, implode("\n", $errors)); return false; } return parent::display($tpl); } }
©
2018.