@@ -8,8 +8,8 @@ |
||
| 8 | 8 | |
| 9 | 9 | class PageAbout extends Page |
| 10 | 10 | { |
| 11 | - public function InitializeContent () |
|
| 11 | + public function InitializeContent() |
|
| 12 | 12 | { |
| 13 | - $this->title = localize ("about.title"); |
|
| 13 | + $this->title = localize("about.title"); |
|
| 14 | 14 | } |
| 15 | 15 | } |
@@ -8,11 +8,11 @@ |
||
| 8 | 8 | |
| 9 | 9 | class PagePublisherDetail extends Page |
| 10 | 10 | { |
| 11 | - public function InitializeContent () |
|
| 11 | + public function InitializeContent() |
|
| 12 | 12 | { |
| 13 | - $publisher = Publisher::getPublisherById ($this->idGet); |
|
| 13 | + $publisher = Publisher::getPublisherById($this->idGet); |
|
| 14 | 14 | $this->title = $publisher->name; |
| 15 | - list ($this->entryArray, $this->totalNumber) = Book::getBooksByPublisher ($this->idGet, $this->n); |
|
| 16 | - $this->idPage = $publisher->getEntryId (); |
|
| 15 | + list ($this->entryArray, $this->totalNumber) = Book::getBooksByPublisher($this->idGet, $this->n); |
|
| 16 | + $this->idPage = $publisher->getEntryId(); |
|
| 17 | 17 | } |
| 18 | 18 | } |