@@ -515,7 +515,7 @@ |
||
| 515 | 515 | /** |
| 516 | 516 | * Returns the tables used in the filter in an array. |
| 517 | 517 | * |
| 518 | - * @return array<string> |
|
| 518 | + * @return integer[] |
|
| 519 | 519 | */ |
| 520 | 520 | public function getUsedTables() { |
| 521 | 521 | return array_keys($this->dbRows); |
@@ -547,23 +547,23 @@ |
||
| 547 | 547 | return $sql_where; |
| 548 | 548 | } |
| 549 | 549 | |
| 550 | - /** |
|
| 551 | - * Override the native php clone function for TDBMObjects |
|
| 552 | - */ |
|
| 553 | - public function __clone(){ |
|
| 554 | - $this->_dbLoadIfNotLoaded(); |
|
| 555 | - //First lets set the status to new (to enter the save function) |
|
| 556 | - $this->status = TDBMObjectStateEnum::STATE_NEW; |
|
| 557 | - |
|
| 558 | - // Add the current TDBMObject to the save object list |
|
| 559 | - $this->tdbmService->_addToToSaveObjectList($this); |
|
| 560 | - |
|
| 561 | - //Now unset the PK from the row |
|
| 562 | - $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
|
| 563 | - foreach ($pk_array as $pk) { |
|
| 564 | - $this->dbRow[$pk] = null; |
|
| 565 | - } |
|
| 566 | - } |
|
| 550 | + /** |
|
| 551 | + * Override the native php clone function for TDBMObjects |
|
| 552 | + */ |
|
| 553 | + public function __clone(){ |
|
| 554 | + $this->_dbLoadIfNotLoaded(); |
|
| 555 | + //First lets set the status to new (to enter the save function) |
|
| 556 | + $this->status = TDBMObjectStateEnum::STATE_NEW; |
|
| 557 | + |
|
| 558 | + // Add the current TDBMObject to the save object list |
|
| 559 | + $this->tdbmService->_addToToSaveObjectList($this); |
|
| 560 | + |
|
| 561 | + //Now unset the PK from the row |
|
| 562 | + $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
|
| 563 | + foreach ($pk_array as $pk) { |
|
| 564 | + $this->dbRow[$pk] = null; |
|
| 565 | + } |
|
| 566 | + } |
|
| 567 | 567 | |
| 568 | 568 | /** |
| 569 | 569 | * Returns raw database rows. |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | * @throws TDBMException |
| 96 | 96 | * @throws TDBMInvalidOperationException |
| 97 | 97 | */ |
| 98 | - public function __construct($tableName=null, array $primaryKeys=array(), TDBMService $tdbmService=null) { |
|
| 98 | + public function __construct($tableName = null, array $primaryKeys = array(), TDBMService $tdbmService = null) { |
|
| 99 | 99 | // FIXME: lazy loading should be forbidden on tables with inheritance and dynamic type assignation... |
| 100 | 100 | if (!empty($tableName)) { |
| 101 | 101 | $this->dbRows[$tableName] = new DbRow($this, $tableName, $primaryKeys, $tdbmService); |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | * $status = TDBMObjectStateEnum::STATE_LOADED when the object is cached in memory. |
| 200 | 200 | * @param string $state |
| 201 | 201 | */ |
| 202 | - public function _setStatus($state){ |
|
| 202 | + public function _setStatus($state) { |
|
| 203 | 203 | $this->status = $state; |
| 204 | 204 | |
| 205 | 205 | // TODO: we might ignore the loaded => dirty state here! dirty status comes from the db_row itself. |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | |
| 211 | 211 | public function get($var, $tableName = null) { |
| 212 | 212 | if ($tableName === null) { |
| 213 | - if (count($this->dbRows) > 1) { |
|
| 213 | + if (count($this->dbRows)>1) { |
|
| 214 | 214 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 215 | 215 | } elseif (count($this->dbRows) === 1) { |
| 216 | 216 | $tableName = array_keys($this->dbRows)[0]; |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | */ |
| 237 | 237 | public function has($var, $tableName = null) { |
| 238 | 238 | if ($tableName === null) { |
| 239 | - if (count($this->dbRows) > 1) { |
|
| 239 | + if (count($this->dbRows)>1) { |
|
| 240 | 240 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 241 | 241 | } elseif (count($this->dbRows) === 1) { |
| 242 | 242 | $tableName = array_keys($this->dbRows)[0]; |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | |
| 257 | 257 | public function set($var, $value, $tableName = null) { |
| 258 | 258 | if ($tableName === null) { |
| 259 | - if (count($this->dbRows) > 1) { |
|
| 259 | + if (count($this->dbRows)>1) { |
|
| 260 | 260 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 261 | 261 | } elseif (count($this->dbRows) === 1) { |
| 262 | 262 | $tableName = array_keys($this->dbRows)[0]; |
@@ -281,7 +281,7 @@ discard block |
||
| 281 | 281 | */ |
| 282 | 282 | public function setRef($foreignKeyName, AbstractTDBMObject $bean, $tableName = null) { |
| 283 | 283 | if ($tableName === null) { |
| 284 | - if (count($this->dbRows) > 1) { |
|
| 284 | + if (count($this->dbRows)>1) { |
|
| 285 | 285 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 286 | 286 | } elseif (count($this->dbRows) === 1) { |
| 287 | 287 | $tableName = array_keys($this->dbRows)[0]; |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | */ |
| 307 | 307 | public function getRef($foreignKeyName, $tableName = null) { |
| 308 | 308 | if ($tableName === null) { |
| 309 | - if (count($this->dbRows) > 1) { |
|
| 309 | + if (count($this->dbRows)>1) { |
|
| 310 | 310 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 311 | 311 | } elseif (count($this->dbRows) === 1) { |
| 312 | 312 | $tableName = array_keys($this->dbRows)[0]; |
@@ -421,13 +421,13 @@ discard block |
||
| 421 | 421 | */ |
| 422 | 422 | private function setRelationship($pivotTableName, AbstractTDBMObject $remoteBean, $status) { |
| 423 | 423 | $storage = $this->getRelationshipStorage($pivotTableName); |
| 424 | - $storage->attach($remoteBean, [ 'status' => $status, 'reverse' => false ]); |
|
| 424 | + $storage->attach($remoteBean, ['status' => $status, 'reverse' => false]); |
|
| 425 | 425 | if ($this->status === TDBMObjectStateEnum::STATE_LOADED) { |
| 426 | 426 | $this->_setStatus(TDBMObjectStateEnum::STATE_DIRTY); |
| 427 | 427 | } |
| 428 | 428 | |
| 429 | 429 | $remoteStorage = $remoteBean->getRelationshipStorage($pivotTableName); |
| 430 | - $remoteStorage->attach($this, [ 'status' => $status, 'reverse' => true ]); |
|
| 430 | + $remoteStorage->attach($this, ['status' => $status, 'reverse' => true]); |
|
| 431 | 431 | } |
| 432 | 432 | |
| 433 | 433 | /** |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | * Implement the unique JsonSerializable method |
| 497 | 497 | * @return array |
| 498 | 498 | */ |
| 499 | - public function jsonSerialize(){ |
|
| 499 | + public function jsonSerialize() { |
|
| 500 | 500 | // FIXME |
| 501 | 501 | $this->_dbLoadIfNotLoaded(); |
| 502 | 502 | return $this->dbRow; |
@@ -526,23 +526,23 @@ discard block |
||
| 526 | 526 | * |
| 527 | 527 | * @return string |
| 528 | 528 | */ |
| 529 | - private function getPrimaryKeyWhereStatement () { |
|
| 529 | + private function getPrimaryKeyWhereStatement() { |
|
| 530 | 530 | // Let's first get the primary keys |
| 531 | 531 | $pk_table = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
| 532 | 532 | // Now for the object_id |
| 533 | 533 | $object_id = $this->TDBMObject_id; |
| 534 | 534 | // If there is only one primary key: |
| 535 | - if (count($pk_table)==1) { |
|
| 535 | + if (count($pk_table) == 1) { |
|
| 536 | 536 | $sql_where = $this->db_connection->escapeDBItem($this->dbTableName).'.'.$this->db_connection->escapeDBItem($pk_table[0])."=".$this->db_connection->quoteSmart($this->TDBMObject_id); |
| 537 | 537 | } else { |
| 538 | 538 | $ids = unserialize($object_id); |
| 539 | - $i=0; |
|
| 539 | + $i = 0; |
|
| 540 | 540 | $sql_where_array = array(); |
| 541 | 541 | foreach ($pk_table as $pk) { |
| 542 | 542 | $sql_where_array[] = $this->db_connection->escapeDBItem($this->dbTableName).'.'.$this->db_connection->escapeDBItem($pk)."=".$this->db_connection->quoteSmart($ids[$i]); |
| 543 | 543 | $i++; |
| 544 | 544 | } |
| 545 | - $sql_where = implode(" AND ",$sql_where_array); |
|
| 545 | + $sql_where = implode(" AND ", $sql_where_array); |
|
| 546 | 546 | } |
| 547 | 547 | return $sql_where; |
| 548 | 548 | } |
@@ -550,7 +550,7 @@ discard block |
||
| 550 | 550 | /** |
| 551 | 551 | * Override the native php clone function for TDBMObjects |
| 552 | 552 | */ |
| 553 | - public function __clone(){ |
|
| 553 | + public function __clone() { |
|
| 554 | 554 | $this->_dbLoadIfNotLoaded(); |
| 555 | 555 | //First lets set the status to new (to enter the save function) |
| 556 | 556 | $this->status = TDBMObjectStateEnum::STATE_NEW; |
@@ -577,7 +577,7 @@ discard block |
||
| 577 | 577 | private function registerTable($tableName) { |
| 578 | 578 | $dbRow = new DbRow($this, $tableName); |
| 579 | 579 | |
| 580 | - if (in_array($this->status, [ TDBMObjectStateEnum::STATE_NOT_LOADED, TDBMObjectStateEnum::STATE_LOADED, TDBMObjectStateEnum::STATE_DIRTY ])) { |
|
| 580 | + if (in_array($this->status, [TDBMObjectStateEnum::STATE_NOT_LOADED, TDBMObjectStateEnum::STATE_LOADED, TDBMObjectStateEnum::STATE_DIRTY])) { |
|
| 581 | 581 | // Let's get the primary key for the new table |
| 582 | 582 | $anotherDbRow = array_values($this->dbRows)[0]; |
| 583 | 583 | /* @var $anotherDbRow DbRow */ |
@@ -138,9 +138,7 @@ discard block |
||
| 138 | 138 | * @Action |
| 139 | 139 | * @param string $daonamespace |
| 140 | 140 | * @param string $beannamespace |
| 141 | - * @param int $keepSupport |
|
| 142 | 141 | * @param int $storeInUtc |
| 143 | - * @param int $castDatesToDateTime |
|
| 144 | 142 | * @param string $selfedit |
| 145 | 143 | * @throws \Mouf\MoufException |
| 146 | 144 | */ |
@@ -168,6 +166,9 @@ discard block |
||
| 168 | 166 | |
| 169 | 167 | protected $errorMsg; |
| 170 | 168 | |
| 169 | + /** |
|
| 170 | + * @param string $msg |
|
| 171 | + */ |
|
| 171 | 172 | private function displayErrorMsg($msg) { |
| 172 | 173 | $this->errorMsg = $msg; |
| 173 | 174 | $this->content->addFile(dirname(__FILE__)."/../../../../views/installError.php", $this); |
@@ -2,12 +2,8 @@ |
||
| 2 | 2 | namespace Mouf\Database\TDBM\Controllers; |
| 3 | 3 | |
| 4 | 4 | use Mouf\Composer\ClassNameMapper; |
| 5 | -use Mouf\MoufUtils; |
|
| 6 | - |
|
| 7 | 5 | use Mouf\Actions\InstallUtils; |
| 8 | - |
|
| 9 | 6 | use Mouf\MoufManager; |
| 10 | - |
|
| 11 | 7 | use Mouf\Html\HtmlElement\HtmlBlock; |
| 12 | 8 | use Mouf\Mvc\Splash\Controllers\Controller; |
| 13 | 9 | |
@@ -109,12 +109,12 @@ discard block |
||
| 109 | 109 | $this->beanNamespace = $this->moufManager->getVariable("tdbmDefaultBeanNamespace_tdbmService"); |
| 110 | 110 | |
| 111 | 111 | if ($this->daoNamespace == null && $this->beanNamespace == null) { |
| 112 | - $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json'); |
|
| 112 | + $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json'); |
|
| 113 | 113 | |
| 114 | - $autoloadNamespaces = $classNameMapper->getManagedNamespaces(); |
|
| 114 | + $autoloadNamespaces = $classNameMapper->getManagedNamespaces(); |
|
| 115 | 115 | if ($autoloadNamespaces) { |
| 116 | 116 | $this->autoloadDetected = true; |
| 117 | - $rootNamespace = $autoloadNamespaces[0]; |
|
| 117 | + $rootNamespace = $autoloadNamespaces[0]; |
|
| 118 | 118 | $this->daoNamespace = $rootNamespace."Dao"; |
| 119 | 119 | $this->beanNamespace = $rootNamespace."Dao\\Bean"; |
| 120 | 120 | } else { |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | * @param string $selfedit |
| 145 | 145 | * @throws \Mouf\MoufException |
| 146 | 146 | */ |
| 147 | - public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit="false") { |
|
| 147 | + public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit="false") { |
|
| 148 | 148 | $this->selfedit = $selfedit; |
| 149 | 149 | |
| 150 | 150 | if ($selfedit == "true") { |
@@ -144,7 +144,7 @@ |
||
| 144 | 144 | * @param string $selfedit |
| 145 | 145 | * @throws \Mouf\MoufException |
| 146 | 146 | */ |
| 147 | - public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit="false") { |
|
| 147 | + public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit = "false") { |
|
| 148 | 148 | $this->selfedit = $selfedit; |
| 149 | 149 | |
| 150 | 150 | if ($selfedit == "true") { |
@@ -328,7 +328,7 @@ |
||
| 328 | 328 | /** |
| 329 | 329 | * Returns the tables used in the filter in an array. |
| 330 | 330 | * |
| 331 | - * @return array<string> |
|
| 331 | + * @return string[] |
|
| 332 | 332 | */ |
| 333 | 333 | public function getUsedTables() { |
| 334 | 334 | return array($this->dbTableName); |
@@ -249,36 +249,36 @@ discard block |
||
| 249 | 249 | public function setRef($foreignKeyName, AbstractTDBMObject $bean = null) { |
| 250 | 250 | $this->references[$foreignKeyName] = $bean; |
| 251 | 251 | |
| 252 | - if ($this->tdbmService !== null && $this->status === TDBMObjectStateEnum::STATE_LOADED) { |
|
| 253 | - $this->status = TDBMObjectStateEnum::STATE_DIRTY; |
|
| 254 | - $this->tdbmService->_addToToSaveObjectList($this); |
|
| 255 | - } |
|
| 252 | + if ($this->tdbmService !== null && $this->status === TDBMObjectStateEnum::STATE_LOADED) { |
|
| 253 | + $this->status = TDBMObjectStateEnum::STATE_DIRTY; |
|
| 254 | + $this->tdbmService->_addToToSaveObjectList($this); |
|
| 255 | + } |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - /** |
|
| 259 | - * @param string $foreignKeyName A unique name for this reference |
|
| 260 | - * @return AbstractTDBMObject|null |
|
| 261 | - */ |
|
| 262 | - public function getRef($foreignKeyName) { |
|
| 258 | + /** |
|
| 259 | + * @param string $foreignKeyName A unique name for this reference |
|
| 260 | + * @return AbstractTDBMObject|null |
|
| 261 | + */ |
|
| 262 | + public function getRef($foreignKeyName) { |
|
| 263 | 263 | if (isset($this->references[$foreignKeyName])) { |
| 264 | 264 | return $this->references[$foreignKeyName]; |
| 265 | 265 | } elseif ($this->status === TDBMObjectStateEnum::STATE_NEW) { |
| 266 | - // If the object is new and has no property, then it has to be empty. |
|
| 267 | - return null; |
|
| 268 | - } else { |
|
| 269 | - $this->_dbLoadIfNotLoaded(); |
|
| 266 | + // If the object is new and has no property, then it has to be empty. |
|
| 267 | + return null; |
|
| 268 | + } else { |
|
| 269 | + $this->_dbLoadIfNotLoaded(); |
|
| 270 | 270 | |
| 271 | - // Let's match the name of the columns to the primary key values |
|
| 272 | - $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 271 | + // Let's match the name of the columns to the primary key values |
|
| 272 | + $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 273 | 273 | |
| 274 | - $values = []; |
|
| 275 | - foreach ($fk->getLocalColumns() as $column) { |
|
| 276 | - $values[] = $this->dbRow[$column]; |
|
| 277 | - } |
|
| 274 | + $values = []; |
|
| 275 | + foreach ($fk->getLocalColumns() as $column) { |
|
| 276 | + $values[] = $this->dbRow[$column]; |
|
| 277 | + } |
|
| 278 | 278 | |
| 279 | - $filter = array_combine($this->tdbmService->getPrimaryKeyColumns($fk->getForeignTableName()), $values); |
|
| 279 | + $filter = array_combine($this->tdbmService->getPrimaryKeyColumns($fk->getForeignTableName()), $values); |
|
| 280 | 280 | |
| 281 | - return $this->tdbmService->findObjectByPk($fk->getForeignTableName(), $filter, [], true); |
|
| 281 | + return $this->tdbmService->findObjectByPk($fk->getForeignTableName(), $filter, [], true); |
|
| 282 | 282 | } |
| 283 | 283 | } |
| 284 | 284 | |
@@ -334,23 +334,23 @@ discard block |
||
| 334 | 334 | return array($this->dbTableName); |
| 335 | 335 | } |
| 336 | 336 | |
| 337 | - /** |
|
| 338 | - * Override the native php clone function for TDBMObjects |
|
| 339 | - */ |
|
| 340 | - public function __clone(){ |
|
| 341 | - $this->_dbLoadIfNotLoaded(); |
|
| 342 | - //First lets set the status to new (to enter the save function) |
|
| 343 | - $this->status = TDBMObjectStateEnum::STATE_NEW; |
|
| 337 | + /** |
|
| 338 | + * Override the native php clone function for TDBMObjects |
|
| 339 | + */ |
|
| 340 | + public function __clone(){ |
|
| 341 | + $this->_dbLoadIfNotLoaded(); |
|
| 342 | + //First lets set the status to new (to enter the save function) |
|
| 343 | + $this->status = TDBMObjectStateEnum::STATE_NEW; |
|
| 344 | 344 | |
| 345 | - // Add the current TDBMObject to the save object list |
|
| 346 | - $this->tdbmService->_addToToSaveObjectList($this); |
|
| 345 | + // Add the current TDBMObject to the save object list |
|
| 346 | + $this->tdbmService->_addToToSaveObjectList($this); |
|
| 347 | 347 | |
| 348 | - //Now unset the PK from the row |
|
| 349 | - $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
|
| 350 | - foreach ($pk_array as $pk) { |
|
| 351 | - $this->dbRow[$pk] = null; |
|
| 352 | - } |
|
| 353 | - } |
|
| 348 | + //Now unset the PK from the row |
|
| 349 | + $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
|
| 350 | + foreach ($pk_array as $pk) { |
|
| 351 | + $this->dbRow[$pk] = null; |
|
| 352 | + } |
|
| 353 | + } |
|
| 354 | 354 | |
| 355 | 355 | /** |
| 356 | 356 | * Returns raw database row. |
@@ -358,35 +358,35 @@ discard block |
||
| 358 | 358 | * @return array |
| 359 | 359 | */ |
| 360 | 360 | public function _getDbRow() { |
| 361 | - // Let's merge $dbRow and $references |
|
| 362 | - $dbRow = $this->dbRow; |
|
| 363 | - |
|
| 364 | - foreach ($this->references as $foreignKeyName => $reference) { |
|
| 365 | - // Let's match the name of the columns to the primary key values |
|
| 366 | - $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 367 | - $refDbRows = $reference->_getDbRows(); |
|
| 368 | - $firstRefDbRow = reset($refDbRows); |
|
| 369 | - $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
|
| 370 | - $localColumns = $fk->getLocalColumns(); |
|
| 371 | - |
|
| 372 | - for ($i=0, $count=count($localColumns); $i<$count; $i++) { |
|
| 373 | - $dbRow[$localColumns[$i]] = $pkValues[$i]; |
|
| 374 | - } |
|
| 375 | - } |
|
| 361 | + // Let's merge $dbRow and $references |
|
| 362 | + $dbRow = $this->dbRow; |
|
| 363 | + |
|
| 364 | + foreach ($this->references as $foreignKeyName => $reference) { |
|
| 365 | + // Let's match the name of the columns to the primary key values |
|
| 366 | + $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 367 | + $refDbRows = $reference->_getDbRows(); |
|
| 368 | + $firstRefDbRow = reset($refDbRows); |
|
| 369 | + $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
|
| 370 | + $localColumns = $fk->getLocalColumns(); |
|
| 371 | + |
|
| 372 | + for ($i=0, $count=count($localColumns); $i<$count; $i++) { |
|
| 373 | + $dbRow[$localColumns[$i]] = $pkValues[$i]; |
|
| 374 | + } |
|
| 375 | + } |
|
| 376 | 376 | |
| 377 | 377 | return $dbRow; |
| 378 | 378 | } |
| 379 | 379 | |
| 380 | - /** |
|
| 381 | - * Returns references array. |
|
| 382 | - * |
|
| 383 | - * @return AbstractTDBMObject[] |
|
| 384 | - */ |
|
| 385 | - public function _getReferences() { |
|
| 386 | - return $this->references; |
|
| 387 | - } |
|
| 380 | + /** |
|
| 381 | + * Returns references array. |
|
| 382 | + * |
|
| 383 | + * @return AbstractTDBMObject[] |
|
| 384 | + */ |
|
| 385 | + public function _getReferences() { |
|
| 386 | + return $this->references; |
|
| 387 | + } |
|
| 388 | 388 | |
| 389 | - /** |
|
| 389 | + /** |
|
| 390 | 390 | * @return array |
| 391 | 391 | */ |
| 392 | 392 | public function _getPrimaryKeys() |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * @throws TDBMException |
| 95 | 95 | * @throws TDBMInvalidOperationException |
| 96 | 96 | */ |
| 97 | - public function __construct(AbstractTDBMObject $object, $table_name, array $primaryKeys=array(), TDBMService $tdbmService=null, array $dbRow = array()) { |
|
| 97 | + public function __construct(AbstractTDBMObject $object, $table_name, array $primaryKeys = array(), TDBMService $tdbmService = null, array $dbRow = array()) { |
|
| 98 | 98 | $this->object = $object; |
| 99 | 99 | $this->dbTableName = $table_name; |
| 100 | 100 | |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | * $status = TDBMObjectStateEnum::STATE_LOADED when the object is cached in memory. |
| 142 | 142 | * @param string $state |
| 143 | 143 | */ |
| 144 | - public function _setStatus($state){ |
|
| 144 | + public function _setStatus($state) { |
|
| 145 | 145 | $this->status = $state; |
| 146 | 146 | } |
| 147 | 147 | |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | $sql = "SELECT * FROM ".$connection->quoteIdentifier($this->dbTableName)." WHERE ".$sql_where; |
| 164 | 164 | $result = $connection->executeQuery($sql, $parameters); |
| 165 | 165 | |
| 166 | - if ($result->rowCount()==0) |
|
| 166 | + if ($result->rowCount() == 0) |
|
| 167 | 167 | { |
| 168 | 168 | throw new TDBMException("Could not retrieve object from table \"$this->dbTableName\" with ID \"".$this->TDBMObject_id."\"."); |
| 169 | 169 | } |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | * Implement the unique JsonSerializable method |
| 311 | 311 | * @return array |
| 312 | 312 | */ |
| 313 | - public function jsonSerialize(){ |
|
| 313 | + public function jsonSerialize() { |
|
| 314 | 314 | $this->_dbLoadIfNotLoaded(); |
| 315 | 315 | return $this->dbRow; |
| 316 | 316 | } |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | /** |
| 338 | 338 | * Override the native php clone function for TDBMObjects |
| 339 | 339 | */ |
| 340 | - public function __clone(){ |
|
| 340 | + public function __clone() { |
|
| 341 | 341 | $this->_dbLoadIfNotLoaded(); |
| 342 | 342 | //First lets set the status to new (to enter the save function) |
| 343 | 343 | $this->status = TDBMObjectStateEnum::STATE_NEW; |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
| 370 | 370 | $localColumns = $fk->getLocalColumns(); |
| 371 | 371 | |
| 372 | - for ($i=0, $count=count($localColumns); $i<$count; $i++) { |
|
| 372 | + for ($i = 0, $count = count($localColumns); $i<$count; $i++) { |
|
| 373 | 373 | $dbRow[$localColumns[$i]] = $pkValues[$i]; |
| 374 | 374 | } |
| 375 | 375 | } |
@@ -1,8 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace Mouf\Database\TDBM\Filters; |
| 3 | 3 | |
| 4 | -use Doctrine\DBAL\Driver\Connection; |
|
| 5 | - |
|
| 6 | 4 | /* |
| 7 | 5 | Copyright (C) 2006-2011 David Négrier - THE CODING MACHINE |
| 8 | 6 | |
@@ -133,14 +133,14 @@ |
||
| 133 | 133 | $work_table = explode("'", $work_str); |
| 134 | 134 | |
| 135 | 135 | if (count($work_table) == 0) |
| 136 | - return ''; |
|
| 136 | + return ''; |
|
| 137 | 137 | |
| 138 | 138 | // if we start with a ', let's remove the first text |
| 139 | 139 | if (strstr($work_str,"'") === 0) |
| 140 | - array_shift($work_table); |
|
| 140 | + array_shift($work_table); |
|
| 141 | 141 | |
| 142 | 142 | if (count($work_table) == 0) |
| 143 | - return ''; |
|
| 143 | + return ''; |
|
| 144 | 144 | |
| 145 | 145 | // Now, let's take only the stuff outside the quotes. |
| 146 | 146 | $work_str2 = ''; |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | * |
| 61 | 61 | * @param string $sqlString |
| 62 | 62 | */ |
| 63 | - public function __construct($sqlString=null) { |
|
| 63 | + public function __construct($sqlString = null) { |
|
| 64 | 64 | $this->sqlString = $sqlString; |
| 65 | 65 | } |
| 66 | 66 | |
@@ -86,8 +86,8 @@ discard block |
||
| 86 | 86 | $result = -1; |
| 87 | 87 | while (true) { |
| 88 | 88 | $result = strrpos($phrase, "'", $result+1); |
| 89 | - if ($result===false) { |
|
| 90 | - if ($sentence!='') |
|
| 89 | + if ($result === false) { |
|
| 90 | + if ($sentence != '') |
|
| 91 | 91 | $sentence .= ','; |
| 92 | 92 | $sentence .= $phrase; |
| 93 | 93 | |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | else |
| 103 | 103 | { |
| 104 | 104 | $valid_result = true; |
| 105 | - if ($result>0 && $phrase{$result-1}=='\\') { |
|
| 105 | + if ($result>0 && $phrase{$result-1} == '\\') { |
|
| 106 | 106 | $valid_result = false; |
| 107 | 107 | } |
| 108 | 108 | if ($valid_result) |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | // First, let's remove all the stuff in quotes: |
| 129 | 129 | |
| 130 | 130 | // Let's remove all the \' found |
| 131 | - $work_str = str_replace("\\'",'',$this->sqlString); |
|
| 131 | + $work_str = str_replace("\\'", '', $this->sqlString); |
|
| 132 | 132 | // Now, let's split the string using ' |
| 133 | 133 | $work_table = explode("'", $work_str); |
| 134 | 134 | |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | return ''; |
| 137 | 137 | |
| 138 | 138 | // if we start with a ', let's remove the first text |
| 139 | - if (strstr($work_str,"'") === 0) |
|
| 139 | + if (strstr($work_str, "'") === 0) |
|
| 140 | 140 | array_shift($work_table); |
| 141 | 141 | |
| 142 | 142 | if (count($work_table) == 0) |
@@ -147,13 +147,13 @@ discard block |
||
| 147 | 147 | |
| 148 | 148 | $i = 0; |
| 149 | 149 | foreach ($work_table as $str_fragment) { |
| 150 | - if (($i % 2) == 0) |
|
| 150 | + if (($i%2) == 0) |
|
| 151 | 151 | $work_str2 .= $str_fragment.' '; |
| 152 | 152 | $i++; |
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | // Now, let's run a regexp to find all the strings matching the pattern xxx.yyy |
| 156 | - preg_match_all('/([a-zA-Z_](?:[a-zA-Z0-9_]*))\.(?:[a-zA-Z_](?:[a-zA-Z0-9_]*))/', $work_str2,$capture_result); |
|
| 156 | + preg_match_all('/([a-zA-Z_](?:[a-zA-Z0-9_]*))\.(?:[a-zA-Z_](?:[a-zA-Z0-9_]*))/', $work_str2, $capture_result); |
|
| 157 | 157 | |
| 158 | 158 | $tables_used = $capture_result[1]; |
| 159 | 159 | // remove doubles: |
@@ -87,8 +87,9 @@ discard block |
||
| 87 | 87 | while (true) { |
| 88 | 88 | $result = strrpos($phrase, "'", $result+1); |
| 89 | 89 | if ($result===false) { |
| 90 | - if ($sentence!='') |
|
| 91 | - $sentence .= ','; |
|
| 90 | + if ($sentence!='') { |
|
| 91 | + $sentence .= ','; |
|
| 92 | + } |
|
| 92 | 93 | $sentence .= $phrase; |
| 93 | 94 | |
| 94 | 95 | if ($is_inside_quotes) { |
@@ -98,15 +99,15 @@ discard block |
||
| 98 | 99 | $sentence = ''; |
| 99 | 100 | break; |
| 100 | 101 | } |
| 101 | - } |
|
| 102 | - else |
|
| 102 | + } else |
|
| 103 | 103 | { |
| 104 | 104 | $valid_result = true; |
| 105 | 105 | if ($result>0 && $phrase{$result-1}=='\\') { |
| 106 | 106 | $valid_result = false; |
| 107 | 107 | } |
| 108 | - if ($valid_result) |
|
| 109 | - $is_inside_quotes = !$is_inside_quotes; |
|
| 108 | + if ($valid_result) { |
|
| 109 | + $is_inside_quotes = !$is_inside_quotes; |
|
| 110 | + } |
|
| 110 | 111 | } |
| 111 | 112 | } |
| 112 | 113 | |
@@ -132,23 +133,27 @@ discard block |
||
| 132 | 133 | // Now, let's split the string using ' |
| 133 | 134 | $work_table = explode("'", $work_str); |
| 134 | 135 | |
| 135 | - if (count($work_table) == 0) |
|
| 136 | - return ''; |
|
| 136 | + if (count($work_table) == 0) { |
|
| 137 | + return ''; |
|
| 138 | + } |
|
| 137 | 139 | |
| 138 | 140 | // if we start with a ', let's remove the first text |
| 139 | - if (strstr($work_str,"'") === 0) |
|
| 140 | - array_shift($work_table); |
|
| 141 | + if (strstr($work_str,"'") === 0) { |
|
| 142 | + array_shift($work_table); |
|
| 143 | + } |
|
| 141 | 144 | |
| 142 | - if (count($work_table) == 0) |
|
| 143 | - return ''; |
|
| 145 | + if (count($work_table) == 0) { |
|
| 146 | + return ''; |
|
| 147 | + } |
|
| 144 | 148 | |
| 145 | 149 | // Now, let's take only the stuff outside the quotes. |
| 146 | 150 | $work_str2 = ''; |
| 147 | 151 | |
| 148 | 152 | $i = 0; |
| 149 | 153 | foreach ($work_table as $str_fragment) { |
| 150 | - if (($i % 2) == 0) |
|
| 151 | - $work_str2 .= $str_fragment.' '; |
|
| 154 | + if (($i % 2) == 0) { |
|
| 155 | + $work_str2 .= $str_fragment.' '; |
|
| 156 | + } |
|
| 152 | 157 | $i++; |
| 153 | 158 | } |
| 154 | 159 | |
@@ -1,7 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace Mouf\Database\TDBM; |
| 3 | 3 | |
| 4 | -use Doctrine\DBAL\Driver\Connection; |
|
| 5 | 4 | use Doctrine\DBAL\Statement; |
| 6 | 5 | use Mouf\Database\MagicQuery; |
| 7 | 6 | |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | protected $callable; |
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | - * @param $iterator Iterator|array |
|
| 21 | + * @param InnerResultIterator $iterator Iterator|array |
|
| 22 | 22 | * @param $callable callable This can have two parameters |
| 23 | 23 | * @throws Exception |
| 24 | 24 | */ |
@@ -7,85 +7,85 @@ |
||
| 7 | 7 | */ |
| 8 | 8 | class MapIterator implements \Iterator { |
| 9 | 9 | |
| 10 | - /** |
|
| 11 | - * @var Iterator |
|
| 12 | - */ |
|
| 13 | - protected $iterator; |
|
| 10 | + /** |
|
| 11 | + * @var Iterator |
|
| 12 | + */ |
|
| 13 | + protected $iterator; |
|
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @var callable Modifies the current item in iterator |
|
| 17 | - */ |
|
| 18 | - protected $callable; |
|
| 15 | + /** |
|
| 16 | + * @var callable Modifies the current item in iterator |
|
| 17 | + */ |
|
| 18 | + protected $callable; |
|
| 19 | 19 | |
| 20 | - /** |
|
| 21 | - * @param $iterator Iterator|array |
|
| 22 | - * @param $callable callable This can have two parameters |
|
| 23 | - * @throws Exception |
|
| 24 | - */ |
|
| 25 | - public function __construct($iterator, callable $callable) { |
|
| 26 | - if (is_array($iterator)) { |
|
| 27 | - $this->iterator = new \ArrayIterator($iterator); |
|
| 28 | - } |
|
| 29 | - elseif (!($iterator instanceof \Iterator)) |
|
| 30 | - { |
|
| 31 | - throw new TDBMException("\$iterator parameter must be an instance of Iterator"); |
|
| 32 | - } |
|
| 33 | - else |
|
| 34 | - { |
|
| 35 | - $this->iterator = $iterator; |
|
| 36 | - } |
|
| 20 | + /** |
|
| 21 | + * @param $iterator Iterator|array |
|
| 22 | + * @param $callable callable This can have two parameters |
|
| 23 | + * @throws Exception |
|
| 24 | + */ |
|
| 25 | + public function __construct($iterator, callable $callable) { |
|
| 26 | + if (is_array($iterator)) { |
|
| 27 | + $this->iterator = new \ArrayIterator($iterator); |
|
| 28 | + } |
|
| 29 | + elseif (!($iterator instanceof \Iterator)) |
|
| 30 | + { |
|
| 31 | + throw new TDBMException("\$iterator parameter must be an instance of Iterator"); |
|
| 32 | + } |
|
| 33 | + else |
|
| 34 | + { |
|
| 35 | + $this->iterator = $iterator; |
|
| 36 | + } |
|
| 37 | 37 | |
| 38 | - if ($callable instanceof \Closure) { |
|
| 39 | - // make sure there's one argument |
|
| 40 | - $reflection = new \ReflectionObject($callable); |
|
| 41 | - if ($reflection->hasMethod('__invoke')) { |
|
| 42 | - $method = $reflection->getMethod('__invoke'); |
|
| 43 | - if ($method->getNumberOfParameters() !== 1) { |
|
| 44 | - throw new TDBMException("\$callable must accept one and only one parameter."); |
|
| 45 | - } |
|
| 46 | - } |
|
| 47 | - } |
|
| 38 | + if ($callable instanceof \Closure) { |
|
| 39 | + // make sure there's one argument |
|
| 40 | + $reflection = new \ReflectionObject($callable); |
|
| 41 | + if ($reflection->hasMethod('__invoke')) { |
|
| 42 | + $method = $reflection->getMethod('__invoke'); |
|
| 43 | + if ($method->getNumberOfParameters() !== 1) { |
|
| 44 | + throw new TDBMException("\$callable must accept one and only one parameter."); |
|
| 45 | + } |
|
| 46 | + } |
|
| 47 | + } |
|
| 48 | 48 | |
| 49 | - $this->callable = $callable; |
|
| 50 | - } |
|
| 49 | + $this->callable = $callable; |
|
| 50 | + } |
|
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * Alters the current item with $this->callable and returns a new item. |
|
| 54 | - * Be careful with your types as we can't do static type checking here! |
|
| 55 | - * @return mixed |
|
| 56 | - */ |
|
| 57 | - public function current() |
|
| 58 | - { |
|
| 59 | - $callable = $this->callable; |
|
| 60 | - return $callable($this->iterator->current()); |
|
| 61 | - } |
|
| 52 | + /** |
|
| 53 | + * Alters the current item with $this->callable and returns a new item. |
|
| 54 | + * Be careful with your types as we can't do static type checking here! |
|
| 55 | + * @return mixed |
|
| 56 | + */ |
|
| 57 | + public function current() |
|
| 58 | + { |
|
| 59 | + $callable = $this->callable; |
|
| 60 | + return $callable($this->iterator->current()); |
|
| 61 | + } |
|
| 62 | 62 | |
| 63 | - public function next() |
|
| 64 | - { |
|
| 65 | - $this->iterator->next(); |
|
| 66 | - } |
|
| 63 | + public function next() |
|
| 64 | + { |
|
| 65 | + $this->iterator->next(); |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | - public function key() |
|
| 69 | - { |
|
| 70 | - return $this->iterator->key(); |
|
| 71 | - } |
|
| 68 | + public function key() |
|
| 69 | + { |
|
| 70 | + return $this->iterator->key(); |
|
| 71 | + } |
|
| 72 | 72 | |
| 73 | - public function valid() |
|
| 74 | - { |
|
| 75 | - return $this->iterator->valid(); |
|
| 76 | - } |
|
| 73 | + public function valid() |
|
| 74 | + { |
|
| 75 | + return $this->iterator->valid(); |
|
| 76 | + } |
|
| 77 | 77 | |
| 78 | - public function rewind() |
|
| 79 | - { |
|
| 80 | - $this->iterator->rewind(); |
|
| 81 | - } |
|
| 78 | + public function rewind() |
|
| 79 | + { |
|
| 80 | + $this->iterator->rewind(); |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - /** |
|
| 84 | - * Casts the iterator to a PHP array. |
|
| 85 | - * |
|
| 86 | - * @return array |
|
| 87 | - */ |
|
| 88 | - public function toArray() { |
|
| 89 | - return iterator_to_array($this); |
|
| 90 | - } |
|
| 83 | + /** |
|
| 84 | + * Casts the iterator to a PHP array. |
|
| 85 | + * |
|
| 86 | + * @return array |
|
| 87 | + */ |
|
| 88 | + public function toArray() { |
|
| 89 | + return iterator_to_array($this); |
|
| 90 | + } |
|
| 91 | 91 | } |
@@ -25,12 +25,10 @@ |
||
| 25 | 25 | public function __construct($iterator, callable $callable) { |
| 26 | 26 | if (is_array($iterator)) { |
| 27 | 27 | $this->iterator = new \ArrayIterator($iterator); |
| 28 | - } |
|
| 29 | - elseif (!($iterator instanceof \Iterator)) |
|
| 28 | + } elseif (!($iterator instanceof \Iterator)) |
|
| 30 | 29 | { |
| 31 | 30 | throw new TDBMException("\$iterator parameter must be an instance of Iterator"); |
| 32 | - } |
|
| 33 | - else |
|
| 31 | + } else |
|
| 34 | 32 | { |
| 35 | 33 | $this->iterator = $iterator; |
| 36 | 34 | } |
@@ -63,6 +63,9 @@ discard block |
||
| 63 | 63 | |
| 64 | 64 | private $innerResultIterator; |
| 65 | 65 | |
| 66 | + /** |
|
| 67 | + * @param integer $offset |
|
| 68 | + */ |
|
| 66 | 69 | public function __construct(ResultIterator $parentResult, $magicSql, array $parameters, $limit, $offset, array $columnDescriptors, $objectStorage, $className, TDBMService $tdbmService, MagicQuery $magicQuery, $mode) |
| 67 | 70 | { |
| 68 | 71 | $this->parentResult = $parentResult; |
@@ -108,7 +111,7 @@ discard block |
||
| 108 | 111 | } |
| 109 | 112 | |
| 110 | 113 | /** |
| 111 | - * @return int |
|
| 114 | + * @return double |
|
| 112 | 115 | */ |
| 113 | 116 | public function getCurrentPage() |
| 114 | 117 | { |
@@ -1,7 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace Mouf\Database\TDBM; |
| 3 | 3 | |
| 4 | -use Doctrine\DBAL\Driver\Connection; |
|
| 5 | 4 | use Doctrine\DBAL\Statement; |
| 6 | 5 | use Mouf\Database\MagicQuery; |
| 7 | 6 | use Porpaginas\Page; |
@@ -112,7 +112,7 @@ |
||
| 112 | 112 | */ |
| 113 | 113 | public function getCurrentPage() |
| 114 | 114 | { |
| 115 | - return floor($this->offset / $this->limit) + 1; |
|
| 115 | + return floor($this->offset/$this->limit)+1; |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /** |
@@ -70,6 +70,12 @@ discard block |
||
| 70 | 70 | |
| 71 | 71 | private $mode; |
| 72 | 72 | |
| 73 | + /** |
|
| 74 | + * @param string $magicSql |
|
| 75 | + * @param string $magicSqlCount |
|
| 76 | + * @param WeakrefObjectStorage $objectStorage |
|
| 77 | + * @param string|null $className |
|
| 78 | + */ |
|
| 73 | 79 | public function __construct($magicSql, $magicSqlCount, array $parameters, array $columnDescriptors, $objectStorage, $className, TDBMService $tdbmService, MagicQuery $magicQuery, $mode) |
| 74 | 80 | { |
| 75 | 81 | $this->magicSql = $magicSql; |
@@ -166,6 +172,7 @@ discard block |
||
| 166 | 172 | |
| 167 | 173 | /** |
| 168 | 174 | * @param int $offset |
| 175 | + * @param integer $limit |
|
| 169 | 176 | * @return PageIterator |
| 170 | 177 | */ |
| 171 | 178 | public function take($offset, $limit) |
@@ -1,7 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace Mouf\Database\TDBM; |
| 3 | 3 | |
| 4 | -use Doctrine\DBAL\Driver\Connection; |
|
| 5 | 4 | use Doctrine\DBAL\Statement; |
| 6 | 5 | use Mouf\Database\MagicQuery; |
| 7 | 6 | use Porpaginas\Result; |
@@ -35,6 +35,9 @@ discard block |
||
| 35 | 35 | class TDBMObject extends AbstractTDBMObject implements \ArrayAccess, \Iterator |
| 36 | 36 | { |
| 37 | 37 | |
| 38 | + /** |
|
| 39 | + * @param string $var |
|
| 40 | + */ |
|
| 38 | 41 | public function __get($var) |
| 39 | 42 | { |
| 40 | 43 | return $this->get($var); |
@@ -51,6 +54,10 @@ discard block |
||
| 51 | 54 | return $this->has($var); |
| 52 | 55 | } |
| 53 | 56 | |
| 57 | + /** |
|
| 58 | + * @param string $var |
|
| 59 | + * @param string|null $value |
|
| 60 | + */ |
|
| 54 | 61 | public function __set($var, $value) |
| 55 | 62 | { |
| 56 | 63 | $this->set($var, $value); |
@@ -18,7 +18,6 @@ |
||
| 18 | 18 | along with this program; if not, write to the Free Software |
| 19 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 | */ |
| 21 | -use Doctrine\DBAL\Driver\Connection; |
|
| 22 | 21 | |
| 23 | 22 | |
| 24 | 23 | /** |
@@ -35,117 +35,117 @@ |
||
| 35 | 35 | class TDBMObject extends AbstractTDBMObject implements \ArrayAccess, \Iterator |
| 36 | 36 | { |
| 37 | 37 | |
| 38 | - public function __get($var) |
|
| 39 | - { |
|
| 40 | - return $this->get($var); |
|
| 41 | - } |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * Returns true if a column is set, false otherwise. |
|
| 45 | - * |
|
| 46 | - * @param string $var |
|
| 47 | - * @return boolean |
|
| 48 | - */ |
|
| 49 | - public function __isset($var) |
|
| 50 | - { |
|
| 51 | - return $this->has($var); |
|
| 52 | - } |
|
| 53 | - |
|
| 54 | - public function __set($var, $value) |
|
| 55 | - { |
|
| 56 | - $this->set($var, $value); |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - /** |
|
| 60 | - * Implements array behaviour for our object. |
|
| 61 | - * |
|
| 62 | - * @param string $offset |
|
| 63 | - * @param string $value |
|
| 64 | - */ |
|
| 65 | - public function offsetSet($offset, $value) |
|
| 66 | - { |
|
| 67 | - $this->__set($offset, $value); |
|
| 68 | - } |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * Implements array behaviour for our object. |
|
| 72 | - * |
|
| 73 | - * @param string $offset |
|
| 74 | - * @return bool |
|
| 75 | - */ |
|
| 76 | - public function offsetExists($offset) |
|
| 77 | - { |
|
| 78 | - $this->_dbLoadIfNotLoaded(); |
|
| 79 | - return isset($this->dbRow[$offset]); |
|
| 80 | - } |
|
| 81 | - |
|
| 82 | - /** |
|
| 83 | - * Implements array behaviour for our object. |
|
| 84 | - * |
|
| 85 | - * @param string $offset |
|
| 86 | - */ |
|
| 87 | - public function offsetUnset($offset) |
|
| 88 | - { |
|
| 89 | - $this->__set($offset, null); |
|
| 90 | - } |
|
| 91 | - |
|
| 92 | - /** |
|
| 93 | - * Implements array behaviour for our object. |
|
| 94 | - * |
|
| 95 | - * @param string $offset |
|
| 96 | - * @return mixed|null |
|
| 97 | - */ |
|
| 98 | - public function offsetGet($offset) |
|
| 99 | - { |
|
| 100 | - return $this->__get($offset); |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - private $_validIterator = false; |
|
| 104 | - |
|
| 105 | - /** |
|
| 106 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 107 | - */ |
|
| 108 | - public function rewind() |
|
| 109 | - { |
|
| 110 | - $this->_dbLoadIfNotLoaded(); |
|
| 111 | - if (count($this->dbRow) > 0) { |
|
| 112 | - $this->_validIterator = true; |
|
| 113 | - } else { |
|
| 114 | - $this->_validIterator = false; |
|
| 115 | - } |
|
| 116 | - reset($this->dbRow); |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - /** |
|
| 120 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 121 | - */ |
|
| 122 | - public function next() |
|
| 123 | - { |
|
| 124 | - $val = next($this->dbRow); |
|
| 125 | - $this->_validIterator = !($val === false); |
|
| 126 | - } |
|
| 127 | - |
|
| 128 | - /** |
|
| 129 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 130 | - */ |
|
| 131 | - public function key() |
|
| 132 | - { |
|
| 133 | - return key($this->dbRow); |
|
| 134 | - } |
|
| 135 | - |
|
| 136 | - /** |
|
| 137 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 138 | - */ |
|
| 139 | - public function current() |
|
| 140 | - { |
|
| 141 | - return current($this->dbRow); |
|
| 142 | - } |
|
| 143 | - |
|
| 144 | - /** |
|
| 145 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 146 | - */ |
|
| 147 | - public function valid() |
|
| 148 | - { |
|
| 149 | - return $this->_validIterator; |
|
| 150 | - } |
|
| 38 | + public function __get($var) |
|
| 39 | + { |
|
| 40 | + return $this->get($var); |
|
| 41 | + } |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * Returns true if a column is set, false otherwise. |
|
| 45 | + * |
|
| 46 | + * @param string $var |
|
| 47 | + * @return boolean |
|
| 48 | + */ |
|
| 49 | + public function __isset($var) |
|
| 50 | + { |
|
| 51 | + return $this->has($var); |
|
| 52 | + } |
|
| 53 | + |
|
| 54 | + public function __set($var, $value) |
|
| 55 | + { |
|
| 56 | + $this->set($var, $value); |
|
| 57 | + } |
|
| 58 | + |
|
| 59 | + /** |
|
| 60 | + * Implements array behaviour for our object. |
|
| 61 | + * |
|
| 62 | + * @param string $offset |
|
| 63 | + * @param string $value |
|
| 64 | + */ |
|
| 65 | + public function offsetSet($offset, $value) |
|
| 66 | + { |
|
| 67 | + $this->__set($offset, $value); |
|
| 68 | + } |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * Implements array behaviour for our object. |
|
| 72 | + * |
|
| 73 | + * @param string $offset |
|
| 74 | + * @return bool |
|
| 75 | + */ |
|
| 76 | + public function offsetExists($offset) |
|
| 77 | + { |
|
| 78 | + $this->_dbLoadIfNotLoaded(); |
|
| 79 | + return isset($this->dbRow[$offset]); |
|
| 80 | + } |
|
| 81 | + |
|
| 82 | + /** |
|
| 83 | + * Implements array behaviour for our object. |
|
| 84 | + * |
|
| 85 | + * @param string $offset |
|
| 86 | + */ |
|
| 87 | + public function offsetUnset($offset) |
|
| 88 | + { |
|
| 89 | + $this->__set($offset, null); |
|
| 90 | + } |
|
| 91 | + |
|
| 92 | + /** |
|
| 93 | + * Implements array behaviour for our object. |
|
| 94 | + * |
|
| 95 | + * @param string $offset |
|
| 96 | + * @return mixed|null |
|
| 97 | + */ |
|
| 98 | + public function offsetGet($offset) |
|
| 99 | + { |
|
| 100 | + return $this->__get($offset); |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + private $_validIterator = false; |
|
| 104 | + |
|
| 105 | + /** |
|
| 106 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 107 | + */ |
|
| 108 | + public function rewind() |
|
| 109 | + { |
|
| 110 | + $this->_dbLoadIfNotLoaded(); |
|
| 111 | + if (count($this->dbRow) > 0) { |
|
| 112 | + $this->_validIterator = true; |
|
| 113 | + } else { |
|
| 114 | + $this->_validIterator = false; |
|
| 115 | + } |
|
| 116 | + reset($this->dbRow); |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + /** |
|
| 120 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 121 | + */ |
|
| 122 | + public function next() |
|
| 123 | + { |
|
| 124 | + $val = next($this->dbRow); |
|
| 125 | + $this->_validIterator = !($val === false); |
|
| 126 | + } |
|
| 127 | + |
|
| 128 | + /** |
|
| 129 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 130 | + */ |
|
| 131 | + public function key() |
|
| 132 | + { |
|
| 133 | + return key($this->dbRow); |
|
| 134 | + } |
|
| 135 | + |
|
| 136 | + /** |
|
| 137 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 138 | + */ |
|
| 139 | + public function current() |
|
| 140 | + { |
|
| 141 | + return current($this->dbRow); |
|
| 142 | + } |
|
| 143 | + |
|
| 144 | + /** |
|
| 145 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 146 | + */ |
|
| 147 | + public function valid() |
|
| 148 | + { |
|
| 149 | + return $this->_validIterator; |
|
| 150 | + } |
|
| 151 | 151 | } |
| 152 | 152 | \ No newline at end of file |
@@ -108,7 +108,7 @@ |
||
| 108 | 108 | public function rewind() |
| 109 | 109 | { |
| 110 | 110 | $this->_dbLoadIfNotLoaded(); |
| 111 | - if (count($this->dbRow) > 0) { |
|
| 111 | + if (count($this->dbRow)>0) { |
|
| 112 | 112 | $this->_validIterator = true; |
| 113 | 113 | } else { |
| 114 | 114 | $this->_validIterator = false; |