1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193:
<?php
if (!defined("OBJENABLED"))
define("OBJENABLED", dirname(__FILE__));
class PHPShopObj {
var $objID;
var $objBase;
var $objRow;
var $debug = false;
var $install = true;
var $cache = false;
var $cache_format = array();
function __construct($var = 'id', $import_data = null) {
if (is_array($import_data))
$this->objRow = $import_data;
else
$this->setRow($var);
}
function setRow($var) {
$this->loadClass("orm");
$PHPShopOrm = new PHPShopOrm($this->objBase);
$PHPShopOrm->debug = $this->debug;
$PHPShopOrm->cache = $this->cache;
$PHPShopOrm->cache_format = $this->cache_format;
$PHPShopOrm->install = $this->install;
$this->objRow = $PHPShopOrm->select(array('*'), array($var => '="' . $this->objID . '"'), false, array('limit' => 1));
}
function ifValue($paramName, $paramValue = false) {
if (empty($paramValue))
$paramValue = 1;
if (!empty($this->objRow[$paramName]))
if ($this->objRow[$paramName] == $paramValue)
return true;
}
function setParam($param, $value) {
$this->objRow[$param] = $value;
}
function getParam($paramName) {
if (!empty($this->objRow[$paramName]))
return $this->objRow[$paramName];
}
function getValue($paramName) {
if (!empty($this->objRow[$paramName]))
return $this->objRow[$paramName];
}
function getArray() {
return $this->objRow;
}
static function loadClass($class) {
if (!is_array($class)) {
$class_name[] = $class;
}
else
$class_name = $class;
foreach ($class_name as $name) {
$class_path = OBJENABLED . "/" . $name . ".class.php";
if (file_exists($class_path))
require_once($class_path);
else
echo "" . $class_path;
}
}
function unserializeParam($paramName) {
return unserialize($this->getParam($paramName));
}
function importCore($class_name) {
global $_classPath;
$class_path = $_classPath . '/core/' . $class_name . ".core.php";
if (file_exists($class_path))
require_once($class_path);
else
echo "" . $class_path;
}
}
function PHPShopAutoLoadClass($class_name) {
global $_classPath;
if (preg_match("/^[a-zA-Z0-9_\.]{2,20}$/", $class_name)) {
$class_path = $_classPath . "class/" . strtolower(str_replace('PHPShop', '', $class_name)) . ".class.php";
if (file_exists($class_path))
require_once($class_path);
}
}
if (function_exists('spl_autoload_register')) {
spl_autoload_register('PHPShopAutoLoadClass');
}
?>