0byt3m1n1-V2
Path:
/
home
/
academiac
/
www
/
administrator
/
components
/
com_csvi
/
tables
/
[
Home
]
File: csvi_log_details.php
<?php /** * Log details table * * @package CSVI * @author Roland Dalmulder * @link http://www.csvimproved.com * @copyright Copyright (C) 2006 - 2013 RolandD Cyber Produksi. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html * @version $Id: csvi_log_details.php 2275 2013-01-03 21:08:43Z RolandD $ */ // No direct access defined('_JEXEC') or die('Restricted access'); /** * @package CSVI */ class TableCsvi_log_details extends JTable { /** @var int Primary key */ var $id = 0; /** @var int The ID of the log entry */ var $log_id = null; /** @var string Description of the logging entry */ var $description = null; /** @var int The result of the entry */ var $result = null; /** @var string The status of action */ public $status = null; /** * @param database A database connector object */ function __construct($db) { parent::__construct('#__csvi_log_details', 'id', $db ); } /** * Cleans the class variables */ public function reset() { $class_vars = get_class_vars(get_class($this)); foreach ($class_vars as $name => $value) { if (substr($name, 0, 1) != '_') $this->$name = $value; } } } ?>
©
2018.