uawdijnntqw1x1x1
IP : 216.73.216.155
Hostname : vm5018.vps.agava.net
Kernel : Linux vm5018.vps.agava.net 3.10.0-1127.8.2.vz7.151.14 #1 SMP Tue Jun 9 12:58:54 MSK 2020 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
var
/
www
/
iplanru
/
data
/
www
/
i-plan.ru
/
administrator
/
components
/
com_contenthistory
/
models
/
compare.php
/
/
<?php /** * @package Joomla.Administrator * @subpackage com_contenthistory * * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JLoader::register('ContenthistoryHelper', JPATH_ADMINISTRATOR . '/components/com_contenthistory/helpers/contenthistory.php'); /** * Methods supporting a list of contenthistory records. * * @package Joomla.Administrator * @subpackage com_contenthistory * @since 3.2 */ class ContenthistoryModelCompare extends JModelItem { /** * Method to get a version history row. * * @return mixed On success, array of populated tables. False on failure. * * @since 3.2 */ public function getItems() { $table1 = JTable::getInstance('Contenthistory'); $table2 = JTable::getInstance('Contenthistory'); $id1 = JFactory::getApplication()->input->getInt('id1'); $id2 = JFactory::getApplication()->input->getInt('id2'); $result = array(); if ($table1->load($id1) && $table2->load($id2)) { foreach (array($table1, $table2) as $table) { $object = new stdClass; $object->data = ContenthistoryHelper::prepareData($table); $object->version_note = $table->version_note; $object->save_date = $table->save_date; $result[] = $object; } return $result; } else { return false; } } }
/var/www/iplanru/data/www/i-plan.ru/administrator/components/com_contenthistory/models/compare.php