uawdijnntqw1x1x1
IP : 216.73.216.219
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pteabiscqq
/
www
/
.
/
administrator
/
components
/
com_uniterevolution2
/
inc_php
/
framework
/
db.class.php
/
/
<?php /** * @package Unite Slider for Joomla 1.7-2.5 * @author UniteCMS.net * @copyright (C) 2012 Unite CMS, All Rights Reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html **/ // No direct access. defined('_JEXEC') or die; class UniteDBRev{ private $jdb; private $lastRowID; /** * * constructor - set database object */ public function __construct(){ $this->jdb = JFactory::getDBO(); } /** * * throw error */ private function throwError($message,$code=-1){ UniteFunctionsRev::throwError($message,$code); } //------------------------------------------------------------ // validate for errors private function checkForErrors($prefix = ""){ $errorNum = $this->jdb->getErrorNum(); if($errorNum){ $message = $this->jdb->getErrorMsg(); if(!empty($prefix)) $message = $prefix." ".$message; $this->throwError($message, $errorNum); } } /** * * insert variables to some table */ public function insert($tableName,$arrItems){ $strFields = ""; $strValues = ""; foreach($arrItems as $field=>$value){ $value = "'".$this->escape($value)."'"; if($field == "id") continue; if($strFields != "") $strFields .= ","; if($strValues != "") $strValues .= ","; $strFields .= $field; $strValues .= $value; } $insertQuery = "insert into $tableName($strFields) values($strValues)"; $this->runSql($insertQuery,"insert"); $this->lastRowID = $this->jdb->insertid(); return($this->lastRowID); } /** * * get last insert id */ public function getLastInsertID(){ $this->lastRowID = $this->jdb->insertid(); return($this->lastRowID); } /** * * delete rows */ public function delete($table,$where){ UniteFunctionsRev::validateNotEmpty($table,"table name"); UniteFunctionsRev::validateNotEmpty($where,"where"); if(is_array($where)) $where = $this->getWhereString($where); $query = "delete from $table where $where"; $success = $this->runSql($query, "delete error"); return($success); } /** * * get where string from where array */ private function getWhereString($where){ $where_format = null; foreach ( $where as $key=>$value ) { if(is_numeric($value) == false) $value = "'$value'"; $wheres[] = "$key = {$value}"; } $strWhere = implode( ' AND ', $wheres ); return($strWhere); } /** * * insert variables to some table */ public function update($tableName,$arrData,$where){ UniteFunctionsRev::validateNotEmpty($tableName,"table cannot be empty"); UniteFunctionsRev::validateNotEmpty($where,"where cannot be empty"); if(is_array($where)) $where = $this->getWhereString($where); $strFields = ""; foreach($arrData as $field=>$value){ $value = "'".$this->escape($value)."'"; if($strFields != "") $strFields .= ","; $strFields .= "$field=$value"; } $updateQuery = "update $tableName set $strFields where $where"; //$updateQuery = "update #__revslider_css set params='{\"font-size\":\"50px\",\"line-height\":\"67px\",\"font-weight\":\"700\",\"font-family\":\"\'Roboto\', sans-serif\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(141, 68, 173, 0.65)\",\"padding\":\"0px 15px 5px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}',hover='\"\"',settings='{\"hover\":\"false\"}' where handle = '.tp-caption.roboto'"; $numRows = $this->runSql($updateQuery, "update error"); //dmp($updateQuery);dmp($numRows);exit(); return($numRows); } /** * * execute query, get number of rows affected */ public function runSql($query,$errorMessage="Regular Guery"){ $this->jdb->setQuery($query); $success = $this->jdb->query(); $this->checkForErrors($errorMessage); if($success == false) $this->throwError("query execution failed"); $numRows = $this->jdb->getAffectedRows(); return($numRows); } /** * * fetch rows from sql query */ public function fetchSql($query){ $this->jdb->setQuery($query); //$response = $this->jdb->execute(); $this->checkForErrors("fetch"); $rows = $this->jdb->loadObjectList(); $rows = UniteFunctionsRev::convertStdClassToArray($rows); return($rows); } /** * * get row wp emulator */ public function get_row($query = null){ $this->jdb->setQuery($query); $this->checkForErrors("get_row"); $rows = $this->jdb->loadObjectList(); if(count($rows) == 1) $result = $rows[0]; else $result = $rows; return($result); } /** * * get data array from the database * */ public function fetch($tableName,$where="",$orderField="",$groupByField="",$sqlAddon=""){ $query = "select * from $tableName"; if($where) $query .= " where $where"; if($orderField) $query .= " order by $orderField"; if($groupByField) $query .= " group by $groupByField"; if($sqlAddon) $query .= " ".$sqlAddon; $rows = $this->fetchSql($query); return($rows); } /** * * fetch only one item. if not found - throw error */ public function fetchSingle($tableName,$where="",$orderField="",$groupByField="",$sqlAddon=""){ $response = $this->fetch($tableName, $where, $orderField, $groupByField, $sqlAddon); if(empty($response)) $this->throwError("Record not found"); $record = $response[0]; return($record); } /** * * escape data to avoid sql errors and injections. */ public function escape($string){ $newString = $this->jdb->escape($string); return($newString); } } ?>
/home/pteabiscqq/www/./administrator/components/com_uniterevolution2/inc_php/framework/db.class.php