Пример #1
0
 function __construct()
 {
     parent::__construct();
     $this->_tableName = 'transactions';
     $this->_keyField = 'Player';
     $this->_keyField2 = 'DateTime';
 }
Пример #2
0
 function __construct()
 {
     parent::__construct("histories", "date", "homeTeam");
 }
Пример #3
0
 function __construct()
 {
     parent::__construct("data/movement", "datetime");
 }
Пример #4
0
 function __construct()
 {
     parent::__construct('transactions', 'DateTime', 'Player');
 }
Пример #5
0
 function __construct()
 {
     parent::__construct('movements', 'Code', 'Datetime');
 }
 function __construct()
 {
     parent::__construct("data/transactions", "datetime");
 }
 function __construct()
 {
     parent::__construct('heldStock', 'Player');
 }
Пример #8
0
 public function __construct()
 {
     parent::__construct("history", "team", "date");
 }
Пример #9
0
 function __construct()
 {
     parent::__construct('transactions', 'Stock', 'Player');
 }
Пример #10
0
 function __construct()
 {
     parent::__construct('orderitems', 'order', 'item');
 }
Пример #11
0
 public function add($record)
 {
     if (!$this->exists($record['date'], $record['home'])) {
         parent::add($record);
     }
 }
Пример #12
0
 public function __construct()
 {
     parent::__construct('history', 'home', 'date');
 }
Пример #13
0
 function __construct()
 {
     parent::__construct("data/stocks", "code");
 }
 function __construct()
 {
     parent::__construct('transactions', 'Stock', 'DateTime');
 }