gyro/core/model/base/dbcondition.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Simple condition class 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Model 00007 */ 00008 class DBCondition { 00009 public $column; 00010 public $operator; 00011 public $value; 00012 00013 public function __construct($column, $operator, $value) { 00014 $this->column = $column; 00015 $this->operator = $operator; 00016 $this->value = $value; 00017 } 00018 }