@@ -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); |
@@ -537,10 +537,10 @@ discard block |
||
| 537 | 537 | return $sql_where; |
| 538 | 538 | } |
| 539 | 539 | |
| 540 | - /** |
|
| 541 | - * Override the native php clone function for TDBMObjects |
|
| 542 | - */ |
|
| 543 | - public function __clone() { |
|
| 540 | + /** |
|
| 541 | + * Override the native php clone function for TDBMObjects |
|
| 542 | + */ |
|
| 543 | + public function __clone() { |
|
| 544 | 544 | // Let's clone the many to many relationships |
| 545 | 545 | if ($this->status === TDBMObjectStateEnum::STATE_DETACHED) { |
| 546 | 546 | $pivotTableList = array_keys($this->relationships); |
@@ -566,10 +566,10 @@ discard block |
||
| 566 | 566 | } |
| 567 | 567 | |
| 568 | 568 | // Let's set the status to new (to enter the save function) |
| 569 | - $this->status = TDBMObjectStateEnum::STATE_DETACHED; |
|
| 569 | + $this->status = TDBMObjectStateEnum::STATE_DETACHED; |
|
| 570 | 570 | |
| 571 | 571 | |
| 572 | - } |
|
| 572 | + } |
|
| 573 | 573 | |
| 574 | 574 | /** |
| 575 | 575 | * Returns raw database rows. |
@@ -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); |
@@ -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") { |
@@ -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); |
@@ -247,36 +247,36 @@ discard block |
||
| 247 | 247 | public function setRef($foreignKeyName, AbstractTDBMObject $bean = null) { |
| 248 | 248 | $this->references[$foreignKeyName] = $bean; |
| 249 | 249 | |
| 250 | - if ($this->tdbmService !== null && $this->status === TDBMObjectStateEnum::STATE_LOADED) { |
|
| 251 | - $this->status = TDBMObjectStateEnum::STATE_DIRTY; |
|
| 252 | - $this->tdbmService->_addToToSaveObjectList($this); |
|
| 253 | - } |
|
| 250 | + if ($this->tdbmService !== null && $this->status === TDBMObjectStateEnum::STATE_LOADED) { |
|
| 251 | + $this->status = TDBMObjectStateEnum::STATE_DIRTY; |
|
| 252 | + $this->tdbmService->_addToToSaveObjectList($this); |
|
| 253 | + } |
|
| 254 | 254 | } |
| 255 | 255 | |
| 256 | - /** |
|
| 257 | - * @param string $foreignKeyName A unique name for this reference |
|
| 258 | - * @return AbstractTDBMObject|null |
|
| 259 | - */ |
|
| 260 | - public function getRef($foreignKeyName) { |
|
| 256 | + /** |
|
| 257 | + * @param string $foreignKeyName A unique name for this reference |
|
| 258 | + * @return AbstractTDBMObject|null |
|
| 259 | + */ |
|
| 260 | + public function getRef($foreignKeyName) { |
|
| 261 | 261 | if (isset($this->references[$foreignKeyName])) { |
| 262 | 262 | return $this->references[$foreignKeyName]; |
| 263 | 263 | } elseif ($this->status === TDBMObjectStateEnum::STATE_NEW) { |
| 264 | - // If the object is new and has no property, then it has to be empty. |
|
| 265 | - return null; |
|
| 266 | - } else { |
|
| 267 | - $this->_dbLoadIfNotLoaded(); |
|
| 264 | + // If the object is new and has no property, then it has to be empty. |
|
| 265 | + return null; |
|
| 266 | + } else { |
|
| 267 | + $this->_dbLoadIfNotLoaded(); |
|
| 268 | 268 | |
| 269 | - // Let's match the name of the columns to the primary key values |
|
| 270 | - $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 269 | + // Let's match the name of the columns to the primary key values |
|
| 270 | + $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 271 | 271 | |
| 272 | - $values = []; |
|
| 273 | - foreach ($fk->getLocalColumns() as $column) { |
|
| 274 | - $values[] = $this->dbRow[$column]; |
|
| 275 | - } |
|
| 272 | + $values = []; |
|
| 273 | + foreach ($fk->getLocalColumns() as $column) { |
|
| 274 | + $values[] = $this->dbRow[$column]; |
|
| 275 | + } |
|
| 276 | 276 | |
| 277 | - $filter = array_combine($this->tdbmService->getPrimaryKeyColumns($fk->getForeignTableName()), $values); |
|
| 277 | + $filter = array_combine($this->tdbmService->getPrimaryKeyColumns($fk->getForeignTableName()), $values); |
|
| 278 | 278 | |
| 279 | - return $this->tdbmService->findObjectByPk($fk->getForeignTableName(), $filter, [], true); |
|
| 279 | + return $this->tdbmService->findObjectByPk($fk->getForeignTableName(), $filter, [], true); |
|
| 280 | 280 | } |
| 281 | 281 | } |
| 282 | 282 | |
@@ -323,26 +323,26 @@ discard block |
||
| 323 | 323 | return array($this->dbTableName); |
| 324 | 324 | } |
| 325 | 325 | |
| 326 | - /** |
|
| 327 | - * Override the native php clone function for TDBMObjects |
|
| 328 | - */ |
|
| 329 | - public function __clone(){ |
|
| 326 | + /** |
|
| 327 | + * Override the native php clone function for TDBMObjects |
|
| 328 | + */ |
|
| 329 | + public function __clone(){ |
|
| 330 | 330 | // Let's load the row (before we lose the ID!) |
| 331 | 331 | $this->_dbLoadIfNotLoaded(); |
| 332 | 332 | |
| 333 | 333 | //Let's set the status to detached |
| 334 | - $this->status = TDBMObjectStateEnum::STATE_DETACHED; |
|
| 334 | + $this->status = TDBMObjectStateEnum::STATE_DETACHED; |
|
| 335 | 335 | |
| 336 | 336 | $this->primaryKeys = null; |
| 337 | 337 | |
| 338 | - //Now unset the PK from the row |
|
| 338 | + //Now unset the PK from the row |
|
| 339 | 339 | if ($this->tdbmService) { |
| 340 | 340 | $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
| 341 | 341 | foreach ($pk_array as $pk) { |
| 342 | 342 | $this->dbRow[$pk] = null; |
| 343 | 343 | } |
| 344 | 344 | } |
| 345 | - } |
|
| 345 | + } |
|
| 346 | 346 | |
| 347 | 347 | /** |
| 348 | 348 | * Returns raw database row. |
@@ -350,35 +350,35 @@ discard block |
||
| 350 | 350 | * @return array |
| 351 | 351 | */ |
| 352 | 352 | public function _getDbRow() { |
| 353 | - // Let's merge $dbRow and $references |
|
| 354 | - $dbRow = $this->dbRow; |
|
| 355 | - |
|
| 356 | - foreach ($this->references as $foreignKeyName => $reference) { |
|
| 357 | - // Let's match the name of the columns to the primary key values |
|
| 358 | - $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 359 | - $refDbRows = $reference->_getDbRows(); |
|
| 360 | - $firstRefDbRow = reset($refDbRows); |
|
| 361 | - $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
|
| 362 | - $localColumns = $fk->getLocalColumns(); |
|
| 363 | - |
|
| 364 | - for ($i=0, $count=count($localColumns); $i<$count; $i++) { |
|
| 365 | - $dbRow[$localColumns[$i]] = $pkValues[$i]; |
|
| 366 | - } |
|
| 367 | - } |
|
| 353 | + // Let's merge $dbRow and $references |
|
| 354 | + $dbRow = $this->dbRow; |
|
| 355 | + |
|
| 356 | + foreach ($this->references as $foreignKeyName => $reference) { |
|
| 357 | + // Let's match the name of the columns to the primary key values |
|
| 358 | + $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 359 | + $refDbRows = $reference->_getDbRows(); |
|
| 360 | + $firstRefDbRow = reset($refDbRows); |
|
| 361 | + $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
|
| 362 | + $localColumns = $fk->getLocalColumns(); |
|
| 363 | + |
|
| 364 | + for ($i=0, $count=count($localColumns); $i<$count; $i++) { |
|
| 365 | + $dbRow[$localColumns[$i]] = $pkValues[$i]; |
|
| 366 | + } |
|
| 367 | + } |
|
| 368 | 368 | |
| 369 | 369 | return $dbRow; |
| 370 | 370 | } |
| 371 | 371 | |
| 372 | - /** |
|
| 373 | - * Returns references array. |
|
| 374 | - * |
|
| 375 | - * @return AbstractTDBMObject[] |
|
| 376 | - */ |
|
| 377 | - public function _getReferences() { |
|
| 378 | - return $this->references; |
|
| 379 | - } |
|
| 372 | + /** |
|
| 373 | + * Returns references array. |
|
| 374 | + * |
|
| 375 | + * @return AbstractTDBMObject[] |
|
| 376 | + */ |
|
| 377 | + public function _getReferences() { |
|
| 378 | + return $this->references; |
|
| 379 | + } |
|
| 380 | 380 | |
| 381 | - /** |
|
| 381 | + /** |
|
| 382 | 382 | * @return array |
| 383 | 383 | */ |
| 384 | 384 | public function _getPrimaryKeys() |
@@ -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 | { |
@@ -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); |
@@ -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 |
@@ -27,8 +27,7 @@ |
||
| 27 | 27 | /** |
| 28 | 28 | * Returns the foreignkey the column is part of, if any. null otherwise. |
| 29 | 29 | * |
| 30 | - * @param Column $column |
|
| 31 | - * @return ForeignKeyConstraint|null |
|
| 30 | + * @return boolean |
|
| 32 | 31 | */ |
| 33 | 32 | public function getForeignKey() { |
| 34 | 33 | return false; |
@@ -12,88 +12,88 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | class ScalarBeanPropertyDescriptor extends AbstractBeanPropertyDescriptor |
| 14 | 14 | { |
| 15 | - /** |
|
| 16 | - * @var Column |
|
| 17 | - */ |
|
| 18 | - private $column; |
|
| 19 | - |
|
| 20 | - |
|
| 21 | - public function __construct(Table $table, Column $column) { |
|
| 22 | - parent::__construct($table); |
|
| 23 | - $this->table = $table; |
|
| 24 | - $this->column = $column; |
|
| 25 | - } |
|
| 26 | - |
|
| 27 | - /** |
|
| 28 | - * Returns the foreignkey the column is part of, if any. null otherwise. |
|
| 29 | - * |
|
| 30 | - * @param Column $column |
|
| 31 | - * @return ForeignKeyConstraint|null |
|
| 32 | - */ |
|
| 33 | - public function getForeignKey() { |
|
| 34 | - return false; |
|
| 35 | - } |
|
| 36 | - |
|
| 37 | - /** |
|
| 38 | - * Returns the param annotation for this property (useful for constructor). |
|
| 39 | - * |
|
| 40 | - * @return string |
|
| 41 | - */ |
|
| 42 | - public function getParamAnnotation() { |
|
| 43 | - $className = $this->getClassName(); |
|
| 44 | - $paramType = $className ?: TDBMDaoGenerator::dbalTypeToPhpType($this->column->getType()); |
|
| 45 | - |
|
| 46 | - $str = " * @param %s %s"; |
|
| 47 | - return sprintf($str, $paramType, $this->getVariableName()); |
|
| 48 | - } |
|
| 49 | - |
|
| 50 | - public function getUpperCamelCaseName() { |
|
| 51 | - return TDBMDaoGenerator::toCamelCase($this->column->getName()); |
|
| 52 | - } |
|
| 53 | - |
|
| 54 | - /** |
|
| 55 | - * Returns the name of the class linked to this property or null if this is not a foreign key |
|
| 56 | - * @return null|string |
|
| 57 | - */ |
|
| 58 | - public function getClassName() { |
|
| 59 | - return null; |
|
| 60 | - } |
|
| 61 | - |
|
| 62 | - /** |
|
| 63 | - * Returns true if the property is compulsory (and therefore should be fetched in the constructor). |
|
| 64 | - * @return bool |
|
| 65 | - */ |
|
| 66 | - public function isCompulsory() { |
|
| 67 | - return $this->column->getNotnull() && !$this->column->getAutoincrement(); |
|
| 68 | - } |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * Returns true if the property is the primary key |
|
| 72 | - * @return bool |
|
| 73 | - */ |
|
| 74 | - public function isPrimaryKey() { |
|
| 75 | - return in_array($this->column->getName(), $this->table->getPrimaryKeyColumns()); |
|
| 76 | - } |
|
| 77 | - |
|
| 78 | - /** |
|
| 79 | - * Returns the PHP code for getters and setters |
|
| 80 | - * @return string |
|
| 81 | - */ |
|
| 82 | - public function getGetterSetterCode() { |
|
| 83 | - |
|
| 84 | - $type = $this->column->getType(); |
|
| 85 | - $normalizedType = TDBMDaoGenerator::dbalTypeToPhpType($type); |
|
| 86 | - |
|
| 87 | - $columnGetterName = $this->getGetterName(); |
|
| 88 | - $columnSetterName = $this->getSetterName(); |
|
| 89 | - |
|
| 90 | - if ($normalizedType == "\\DateTimeInterface") { |
|
| 91 | - $castTo = "\\DateTimeInterface "; |
|
| 92 | - } else { |
|
| 93 | - $castTo = ""; |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - $getterAndSetterCode = ' /** |
|
| 15 | + /** |
|
| 16 | + * @var Column |
|
| 17 | + */ |
|
| 18 | + private $column; |
|
| 19 | + |
|
| 20 | + |
|
| 21 | + public function __construct(Table $table, Column $column) { |
|
| 22 | + parent::__construct($table); |
|
| 23 | + $this->table = $table; |
|
| 24 | + $this->column = $column; |
|
| 25 | + } |
|
| 26 | + |
|
| 27 | + /** |
|
| 28 | + * Returns the foreignkey the column is part of, if any. null otherwise. |
|
| 29 | + * |
|
| 30 | + * @param Column $column |
|
| 31 | + * @return ForeignKeyConstraint|null |
|
| 32 | + */ |
|
| 33 | + public function getForeignKey() { |
|
| 34 | + return false; |
|
| 35 | + } |
|
| 36 | + |
|
| 37 | + /** |
|
| 38 | + * Returns the param annotation for this property (useful for constructor). |
|
| 39 | + * |
|
| 40 | + * @return string |
|
| 41 | + */ |
|
| 42 | + public function getParamAnnotation() { |
|
| 43 | + $className = $this->getClassName(); |
|
| 44 | + $paramType = $className ?: TDBMDaoGenerator::dbalTypeToPhpType($this->column->getType()); |
|
| 45 | + |
|
| 46 | + $str = " * @param %s %s"; |
|
| 47 | + return sprintf($str, $paramType, $this->getVariableName()); |
|
| 48 | + } |
|
| 49 | + |
|
| 50 | + public function getUpperCamelCaseName() { |
|
| 51 | + return TDBMDaoGenerator::toCamelCase($this->column->getName()); |
|
| 52 | + } |
|
| 53 | + |
|
| 54 | + /** |
|
| 55 | + * Returns the name of the class linked to this property or null if this is not a foreign key |
|
| 56 | + * @return null|string |
|
| 57 | + */ |
|
| 58 | + public function getClassName() { |
|
| 59 | + return null; |
|
| 60 | + } |
|
| 61 | + |
|
| 62 | + /** |
|
| 63 | + * Returns true if the property is compulsory (and therefore should be fetched in the constructor). |
|
| 64 | + * @return bool |
|
| 65 | + */ |
|
| 66 | + public function isCompulsory() { |
|
| 67 | + return $this->column->getNotnull() && !$this->column->getAutoincrement(); |
|
| 68 | + } |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * Returns true if the property is the primary key |
|
| 72 | + * @return bool |
|
| 73 | + */ |
|
| 74 | + public function isPrimaryKey() { |
|
| 75 | + return in_array($this->column->getName(), $this->table->getPrimaryKeyColumns()); |
|
| 76 | + } |
|
| 77 | + |
|
| 78 | + /** |
|
| 79 | + * Returns the PHP code for getters and setters |
|
| 80 | + * @return string |
|
| 81 | + */ |
|
| 82 | + public function getGetterSetterCode() { |
|
| 83 | + |
|
| 84 | + $type = $this->column->getType(); |
|
| 85 | + $normalizedType = TDBMDaoGenerator::dbalTypeToPhpType($type); |
|
| 86 | + |
|
| 87 | + $columnGetterName = $this->getGetterName(); |
|
| 88 | + $columnSetterName = $this->getSetterName(); |
|
| 89 | + |
|
| 90 | + if ($normalizedType == "\\DateTimeInterface") { |
|
| 91 | + $castTo = "\\DateTimeInterface "; |
|
| 92 | + } else { |
|
| 93 | + $castTo = ""; |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + $getterAndSetterCode = ' /** |
|
| 97 | 97 | * The getter for the "%s" column. |
| 98 | 98 | * |
| 99 | 99 | * @return %s |
@@ -112,40 +112,40 @@ discard block |
||
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | '; |
| 115 | - return sprintf($getterAndSetterCode, |
|
| 116 | - // Getter |
|
| 117 | - $this->column->getName(), |
|
| 118 | - $normalizedType, |
|
| 119 | - $columnGetterName, |
|
| 120 | - var_export($this->column->getName(), true), |
|
| 121 | - var_export($this->table->getName(), true), |
|
| 122 | - // Setter |
|
| 123 | - $this->column->getName(), |
|
| 124 | - $normalizedType, |
|
| 125 | - $this->column->getName(), |
|
| 126 | - $columnSetterName, |
|
| 127 | - $castTo, |
|
| 128 | - $this->column->getName(), |
|
| 129 | - var_export($this->column->getName(), true), |
|
| 130 | - $this->column->getName(), |
|
| 131 | - var_export($this->table->getName(), true) |
|
| 132 | - ); |
|
| 133 | - } |
|
| 134 | - |
|
| 135 | - /** |
|
| 136 | - * Returns the part of code useful when doing json serialization. |
|
| 137 | - * |
|
| 138 | - * @return string |
|
| 139 | - */ |
|
| 140 | - public function getJsonSerializeCode() |
|
| 141 | - { |
|
| 142 | - $type = $this->column->getType(); |
|
| 143 | - $normalizedType = TDBMDaoGenerator::dbalTypeToPhpType($type); |
|
| 144 | - |
|
| 145 | - if ($normalizedType == "\\DateTimeInterface") { |
|
| 146 | - return ' $array['.var_export($this->getLowerCamelCaseName(), true).'] = $this->'.$this->getGetterName()."()->format('c');\n"; |
|
| 147 | - } else { |
|
| 148 | - return ' $array['.var_export($this->getLowerCamelCaseName(), true).'] = $this->'.$this->getGetterName()."();\n"; |
|
| 149 | - } |
|
| 150 | - } |
|
| 115 | + return sprintf($getterAndSetterCode, |
|
| 116 | + // Getter |
|
| 117 | + $this->column->getName(), |
|
| 118 | + $normalizedType, |
|
| 119 | + $columnGetterName, |
|
| 120 | + var_export($this->column->getName(), true), |
|
| 121 | + var_export($this->table->getName(), true), |
|
| 122 | + // Setter |
|
| 123 | + $this->column->getName(), |
|
| 124 | + $normalizedType, |
|
| 125 | + $this->column->getName(), |
|
| 126 | + $columnSetterName, |
|
| 127 | + $castTo, |
|
| 128 | + $this->column->getName(), |
|
| 129 | + var_export($this->column->getName(), true), |
|
| 130 | + $this->column->getName(), |
|
| 131 | + var_export($this->table->getName(), true) |
|
| 132 | + ); |
|
| 133 | + } |
|
| 134 | + |
|
| 135 | + /** |
|
| 136 | + * Returns the part of code useful when doing json serialization. |
|
| 137 | + * |
|
| 138 | + * @return string |
|
| 139 | + */ |
|
| 140 | + public function getJsonSerializeCode() |
|
| 141 | + { |
|
| 142 | + $type = $this->column->getType(); |
|
| 143 | + $normalizedType = TDBMDaoGenerator::dbalTypeToPhpType($type); |
|
| 144 | + |
|
| 145 | + if ($normalizedType == "\\DateTimeInterface") { |
|
| 146 | + return ' $array['.var_export($this->getLowerCamelCaseName(), true).'] = $this->'.$this->getGetterName()."()->format('c');\n"; |
|
| 147 | + } else { |
|
| 148 | + return ' $array['.var_export($this->getLowerCamelCaseName(), true).'] = $this->'.$this->getGetterName()."();\n"; |
|
| 149 | + } |
|
| 150 | + } |
|
| 151 | 151 | } |
@@ -59,10 +59,10 @@ discard block |
||
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | if ($this->daoNamespace == null && $this->beanNamespace == null) { |
| 62 | - $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json'); |
|
| 62 | + $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json'); |
|
| 63 | 63 | |
| 64 | 64 | $autoloadNamespaces = $classNameMapper->getManagedNamespaces(); |
| 65 | - if ($autoloadNamespaces) { |
|
| 65 | + if ($autoloadNamespaces) { |
|
| 66 | 66 | $this->autoloadDetected = true; |
| 67 | 67 | $rootNamespace = $autoloadNamespaces[0]; |
| 68 | 68 | $this->daoNamespace = $rootNamespace."Dao"; |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | |
| 139 | 139 | $tdbmService = new InstanceProxy($name); |
| 140 | 140 | /* @var $tdbmService TDBMService */ |
| 141 | - $tables = $tdbmService->generateAllDaosAndBeans($daofactoryclassname, $daonamespace, $beannamespace, $storeInUtc); |
|
| 141 | + $tables = $tdbmService->generateAllDaosAndBeans($daofactoryclassname, $daonamespace, $beannamespace, $storeInUtc); |
|
| 142 | 142 | |
| 143 | 143 | |
| 144 | 144 | $moufManager->declareComponent($daofactoryinstancename, $daonamespace."\\".$daofactoryclassname, false, MoufManager::DECLARE_ON_EXIST_KEEP_INCOMING_LINKS); |
@@ -25,10 +25,10 @@ |
||
| 25 | 25 | * @author David Negrier |
| 26 | 26 | */ |
| 27 | 27 | final class TDBMObjectStateEnum extends AbstractTDBMObject { |
| 28 | - const STATE_DETACHED = "detached"; |
|
| 29 | - const STATE_NEW = "new"; |
|
| 30 | - const STATE_NOT_LOADED = "not loaded"; |
|
| 31 | - const STATE_LOADED = "loaded"; |
|
| 32 | - const STATE_DIRTY = "dirty"; |
|
| 33 | - const STATE_DELETED = "deleted"; |
|
| 28 | + const STATE_DETACHED = "detached"; |
|
| 29 | + const STATE_NEW = "new"; |
|
| 30 | + const STATE_NOT_LOADED = "not loaded"; |
|
| 31 | + const STATE_LOADED = "loaded"; |
|
| 32 | + const STATE_DIRTY = "dirty"; |
|
| 33 | + const STATE_DELETED = "deleted"; |
|
| 34 | 34 | } |
@@ -70,6 +70,13 @@ 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 | + * @param integer $mode |
|
| 79 | + */ |
|
| 73 | 80 | public function __construct($magicSql, $magicSqlCount, array $parameters, array $columnDescriptors, $objectStorage, $className, TDBMService $tdbmService, MagicQuery $magicQuery, $mode) |
| 74 | 81 | { |
| 75 | 82 | $this->magicSql = $magicSql; |
@@ -166,6 +173,7 @@ discard block |
||
| 166 | 173 | |
| 167 | 174 | /** |
| 168 | 175 | * @param int $offset |
| 176 | + * @param integer $limit |
|
| 169 | 177 | * @return PageIterator |
| 170 | 178 | */ |
| 171 | 179 | public function take($offset, $limit) |