Completed
Push — master ( 3facbb...d7e1eb )
by Markus
04:20
created
lib/Language.php 3 patches
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -17,17 +17,17 @@  discard block
 block discarded – undo
17 17
         $this->lang_code = $plang_code;
18 18
     }
19 19
 
20
-    public function getUri () {
21
-        return "?page=".parent::PAGE_LANGUAGE_DETAIL."&id=$this->id";
20
+    public function getUri() {
21
+        return "?page=" . parent::PAGE_LANGUAGE_DETAIL . "&id=$this->id";
22 22
     }
23 23
 
24
-    public function getEntryId () {
25
-        return self::ALL_LANGUAGES_ID.":".$this->id;
24
+    public function getEntryId() {
25
+        return self::ALL_LANGUAGES_ID . ":" . $this->id;
26 26
     }
27 27
 
28
-    public static function getLanguageString ($code) {
29
-        $string = localize("languages.".$code);
30
-        if (preg_match ("/^languages/", $string)) {
28
+    public static function getLanguageString($code) {
29
+        $string = localize("languages." . $code);
30
+        if (preg_match("/^languages/", $string)) {
31 31
             return $code;
32 32
         }
33 33
         return $string;
@@ -35,14 +35,14 @@  discard block
 block discarded – undo
35 35
 
36 36
     public static function getCount() {
37 37
         // str_format (localize("languages.alphabetical", count(array))
38
-        return parent::getCountGeneric ("languages", self::ALL_LANGUAGES_ID, parent::PAGE_ALL_LANGUAGES);
38
+        return parent::getCountGeneric("languages", self::ALL_LANGUAGES_ID, parent::PAGE_ALL_LANGUAGES);
39 39
     }
40 40
 
41
-    public static function getLanguageById ($languageId) {
42
-        $result = parent::getDb ()->prepare('select id, lang_code  from languages where id = ?');
43
-        $result->execute (array ($languageId));
44
-        if ($post = $result->fetchObject ()) {
45
-            return new Language ($post->id, Language::getLanguageString ($post->lang_code));
41
+    public static function getLanguageById($languageId) {
42
+        $result = parent::getDb()->prepare('select id, lang_code  from languages where id = ?');
43
+        $result->execute(array($languageId));
44
+        if ($post = $result->fetchObject()) {
45
+            return new Language($post->id, Language::getLanguageString($post->lang_code));
46 46
         }
47 47
         return NULL;
48 48
     }
@@ -50,18 +50,18 @@  discard block
 block discarded – undo
50 50
 
51 51
 
52 52
     public static function getAllLanguages() {
53
-        $result = parent::getDb ()->query('select languages.id as id, languages.lang_code as lang_code, count(*) as count
53
+        $result = parent::getDb()->query('select languages.id as id, languages.lang_code as lang_code, count(*) as count
54 54
 from languages, books_languages_link
55 55
 where languages.id = books_languages_link.lang_code
56 56
 group by languages.id, books_languages_link.lang_code
57 57
 order by languages.lang_code');
58 58
         $entryArray = array();
59
-        while ($post = $result->fetchObject ())
59
+        while ($post = $result->fetchObject())
60 60
         {
61
-            $language = new Language ($post->id, $post->lang_code);
62
-            array_push ($entryArray, new Entry (Language::getLanguageString ($language->lang_code), $language->getEntryId (),
63
-                str_format (localize("bookword", $post->count), $post->count), "text",
64
-                array ( new LinkNavigation ($language->getUri ())), "", $post->count));
61
+            $language = new Language($post->id, $post->lang_code);
62
+            array_push($entryArray, new Entry(Language::getLanguageString($language->lang_code), $language->getEntryId(),
63
+                str_format(localize("bookword", $post->count), $post->count), "text",
64
+                array(new LinkNavigation($language->getUri())), "", $post->count));
65 65
         }
66 66
         return $entryArray;
67 67
     }
Please login to merge, or discard this patch.
Braces   +15 added lines, -9 removed lines patch added patch discarded remove patch
@@ -13,20 +13,24 @@  discard block
 block discarded – undo
13 13
     public $id;
14 14
     public $lang_code;
15 15
 
16
-    public function __construct($pid, $plang_code) {
16
+    public function __construct($pid, $plang_code)
17
+    {
17 18
         $this->id = $pid;
18 19
         $this->lang_code = $plang_code;
19 20
     }
20 21
 
21
-    public function getUri () {
22
+    public function getUri ()
23
+    {
22 24
         return "?page=".parent::PAGE_LANGUAGE_DETAIL."&id=$this->id";
23 25
     }
24 26
 
25
-    public function getEntryId () {
27
+    public function getEntryId ()
28
+    {
26 29
         return self::ALL_LANGUAGES_ID.":".$this->id;
27 30
     }
28 31
 
29
-    public static function getLanguageString ($code) {
32
+    public static function getLanguageString ($code)
33
+    {
30 34
         $string = localize("languages.".$code);
31 35
         if (preg_match ("/^languages/", $string)) {
32 36
             return $code;
@@ -34,12 +38,14 @@  discard block
 block discarded – undo
34 38
         return $string;
35 39
     }
36 40
 
37
-    public static function getCount() {
41
+    public static function getCount()
42
+    {
38 43
         // str_format (localize("languages.alphabetical", count(array))
39 44
         return parent::getCountGeneric ("languages", self::ALL_LANGUAGES_ID, parent::PAGE_ALL_LANGUAGES);
40 45
     }
41 46
 
42
-    public static function getLanguageById ($languageId) {
47
+    public static function getLanguageById ($languageId)
48
+    {
43 49
         $result = parent::getDb ()->prepare('select id, lang_code  from languages where id = ?');
44 50
         $result->execute (array ($languageId));
45 51
         if ($post = $result->fetchObject ()) {
@@ -50,15 +56,15 @@  discard block
 block discarded – undo
50 56
 
51 57
 
52 58
 
53
-    public static function getAllLanguages() {
59
+    public static function getAllLanguages()
60
+    {
54 61
         $result = parent::getDb ()->query('select languages.id as id, languages.lang_code as lang_code, count(*) as count
55 62
 from languages, books_languages_link
56 63
 where languages.id = books_languages_link.lang_code
57 64
 group by languages.id, books_languages_link.lang_code
58 65
 order by languages.lang_code');
59 66
         $entryArray = array();
60
-        while ($post = $result->fetchObject ())
61
-        {
67
+        while ($post = $result->fetchObject ()) {
62 68
             $language = new Language ($post->id, $post->lang_code);
63 69
             array_push ($entryArray, new Entry (Language::getLanguageString ($language->lang_code), $language->getEntryId (),
64 70
                 str_format (localize("bookword", $post->count), $post->count), "text",
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         if ($post = $result->fetchObject ()) {
45 45
             return new Language ($post->id, Language::getLanguageString ($post->lang_code));
46 46
         }
47
-        return NULL;
47
+        return null;
48 48
     }
49 49
 
50 50
 
Please login to merge, or discard this patch.
lib/PageQueryResult.php 3 patches
Spacing   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -15,16 +15,16 @@  discard block
 block discarded – undo
15 15
     const SCOPE_BOOK = "book";
16 16
     const SCOPE_PUBLISHER = "publisher";
17 17
 
18
-    private function useTypeahead () {
19
-        return !is_null (getURLParam ("search"));
18
+    private function useTypeahead() {
19
+        return !is_null(getURLParam("search"));
20 20
     }
21 21
 
22
-    private function searchByScope ($scope, $limit = FALSE) {
22
+    private function searchByScope($scope, $limit = FALSE) {
23 23
         $n = $this->n;
24 24
         $numberPerPage = NULL;
25 25
         $queryNormedAndUp = $this->query;
26
-        if (useNormAndUp ()) {
27
-            $queryNormedAndUp = normAndUp ($this->query);
26
+        if (useNormAndUp()) {
27
+            $queryNormedAndUp = normAndUp($this->query);
28 28
         }
29 29
         if ($limit) {
30 30
             $n = 1;
@@ -32,59 +32,59 @@  discard block
 block discarded – undo
32 32
         }
33 33
         switch ($scope) {
34 34
             case self::SCOPE_BOOK :
35
-                $array = Book::getBooksByStartingLetter ('%' . $queryNormedAndUp, $n, NULL, $numberPerPage);
35
+                $array = Book::getBooksByStartingLetter('%' . $queryNormedAndUp, $n, NULL, $numberPerPage);
36 36
                 break;
37 37
             case self::SCOPE_AUTHOR :
38
-                $array = Author::getAuthorsForSearch ('%' . $queryNormedAndUp);
38
+                $array = Author::getAuthorsForSearch('%' . $queryNormedAndUp);
39 39
                 break;
40 40
             case self::SCOPE_SERIES :
41
-                $array = Serie::getAllSeriesByQuery ($queryNormedAndUp);
41
+                $array = Serie::getAllSeriesByQuery($queryNormedAndUp);
42 42
                 break;
43 43
             case self::SCOPE_TAG :
44
-                $array = Tag::getAllTagsByQuery ($queryNormedAndUp, $n, NULL, $numberPerPage);
44
+                $array = Tag::getAllTagsByQuery($queryNormedAndUp, $n, NULL, $numberPerPage);
45 45
                 break;
46 46
             case self::SCOPE_PUBLISHER :
47
-                $array = Publisher::getAllPublishersByQuery ($queryNormedAndUp);
47
+                $array = Publisher::getAllPublishersByQuery($queryNormedAndUp);
48 48
                 break;
49 49
             default:
50
-                $array = Book::getBooksByQuery (
51
-                    array ("all" => "%" . $queryNormedAndUp . "%"), $n);
50
+                $array = Book::getBooksByQuery(
51
+                    array("all" => "%" . $queryNormedAndUp . "%"), $n);
52 52
         }
53 53
 
54 54
         return $array;
55 55
     }
56 56
 
57
-    public function doSearchByCategory () {
58
-        $database = GetUrlParam (DB);
59
-        $out = array ();
57
+    public function doSearchByCategory() {
58
+        $database = GetUrlParam(DB);
59
+        $out = array();
60 60
         $pagequery = Base::PAGE_OPENSEARCH_QUERY;
61
-        $dbArray = array ("");
61
+        $dbArray = array("");
62 62
         $d = $database;
63 63
         $query = $this->query;
64 64
         // Special case when no databases were chosen, we search on all databases
65
-        if (Base::noDatabaseSelected ()) {
66
-            $dbArray = Base::getDbNameList ();
65
+        if (Base::noDatabaseSelected()) {
66
+            $dbArray = Base::getDbNameList();
67 67
             $d = 0;
68 68
         }
69 69
         foreach ($dbArray as $key) {
70
-            if (Base::noDatabaseSelected ()) {
71
-                array_push ($this->entryArray, new Entry ($key, DB . ":query:{$d}",
70
+            if (Base::noDatabaseSelected()) {
71
+                array_push($this->entryArray, new Entry($key, DB . ":query:{$d}",
72 72
                                         " ", "text",
73
-                                        array ( new LinkNavigation ("?" . DB . "={$d}")), "tt-header"));
74
-                Base::getDb ($d);
73
+                                        array(new LinkNavigation("?" . DB . "={$d}")), "tt-header"));
74
+                Base::getDb($d);
75 75
             }
76
-            foreach (array (PageQueryResult::SCOPE_BOOK,
76
+            foreach (array(PageQueryResult::SCOPE_BOOK,
77 77
                             PageQueryResult::SCOPE_AUTHOR,
78 78
                             PageQueryResult::SCOPE_SERIES,
79 79
                             PageQueryResult::SCOPE_TAG,
80 80
                             PageQueryResult::SCOPE_PUBLISHER) as $key) {
81
-                if (in_array($key, getCurrentOption ('ignored_categories'))) {
81
+                if (in_array($key, getCurrentOption('ignored_categories'))) {
82 82
                     continue;
83 83
                 }
84
-                $array = $this->searchByScope ($key, TRUE);
84
+                $array = $this->searchByScope($key, TRUE);
85 85
 
86 86
                 $i = 0;
87
-                if (count ($array) == 2 && is_array ($array [0])) {
87
+                if (count($array) == 2 && is_array($array [0])) {
88 88
                     $total = $array [1];
89 89
                     $array = $array [0];
90 90
                 } else {
@@ -97,32 +97,32 @@  discard block
 block discarded – undo
97 97
                     // str_format (localize("seriesword", count($array))
98 98
                     // str_format (localize("tagword", count($array))
99 99
                     // str_format (localize("publisherword", count($array))
100
-                    array_push ($this->entryArray, new Entry (str_format (localize ("search.result.{$key}"), $this->query), DB . ":query:{$d}:{$key}",
101
-                                        str_format (localize("{$key}word", $total), $total), "text",
102
-                                        array ( new LinkNavigation ("?page={$pagequery}&query={$query}&db={$d}&scope={$key}")),
103
-                                        Base::noDatabaseSelected () ? "" : "tt-header", $total));
100
+                    array_push($this->entryArray, new Entry(str_format(localize("search.result.{$key}"), $this->query), DB . ":query:{$d}:{$key}",
101
+                                        str_format(localize("{$key}word", $total), $total), "text",
102
+                                        array(new LinkNavigation("?page={$pagequery}&query={$query}&db={$d}&scope={$key}")),
103
+                                        Base::noDatabaseSelected()?"":"tt-header", $total));
104 104
                 }
105
-                if (!Base::noDatabaseSelected () && $this->useTypeahead ()) {
105
+                if (!Base::noDatabaseSelected() && $this->useTypeahead()) {
106 106
                     foreach ($array as $entry) {
107
-                        array_push ($this->entryArray, $entry);
107
+                        array_push($this->entryArray, $entry);
108 108
                         $i++;
109 109
                         if ($i > 4) { break; };
110 110
                     }
111 111
                 }
112 112
             }
113 113
             $d++;
114
-            if (Base::noDatabaseSelected ()) {
115
-                Base::clearDb ();
114
+            if (Base::noDatabaseSelected()) {
115
+                Base::clearDb();
116 116
             }
117 117
         }
118 118
         return $out;
119 119
     }
120 120
 
121
-    public function InitializeContent ()
121
+    public function InitializeContent()
122 122
     {
123
-        $scope = getURLParam ("scope");
123
+        $scope = getURLParam("scope");
124 124
         if (empty ($scope)) {
125
-            $this->title = str_format (localize ("search.result"), $this->query);
125
+            $this->title = str_format(localize("search.result"), $this->query);
126 126
         } else {
127 127
             // Comment to help the perl i18n script
128 128
             // str_format (localize ("search.result.author"), $this->query)
@@ -130,31 +130,31 @@  discard block
 block discarded – undo
130 130
             // str_format (localize ("search.result.series"), $this->query)
131 131
             // str_format (localize ("search.result.book"), $this->query)
132 132
             // str_format (localize ("search.result.publisher"), $this->query)
133
-            $this->title = str_format (localize ("search.result.{$scope}"), $this->query);
133
+            $this->title = str_format(localize("search.result.{$scope}"), $this->query);
134 134
         }
135 135
 
136 136
         $crit = "%" . $this->query . "%";
137 137
 
138 138
         // Special case when we are doing a search and no database is selected
139
-        if (Base::noDatabaseSelected () && !$this->useTypeahead ()) {
139
+        if (Base::noDatabaseSelected() && !$this->useTypeahead()) {
140 140
             $i = 0;
141
-            foreach (Base::getDbNameList () as $key) {
142
-                Base::clearDb ();
143
-                list ($array, $totalNumber) = Book::getBooksByQuery (array ("all" => $crit), 1, $i, 1);
144
-                array_push ($this->entryArray, new Entry ($key, DB . ":query:{$i}",
145
-                                        str_format (localize ("bookword", $totalNumber), $totalNumber), "text",
146
-                                        array ( new LinkNavigation ("?" . DB . "={$i}&page=9&query=" . $this->query)), "", $totalNumber));
141
+            foreach (Base::getDbNameList() as $key) {
142
+                Base::clearDb();
143
+                list ($array, $totalNumber) = Book::getBooksByQuery(array("all" => $crit), 1, $i, 1);
144
+                array_push($this->entryArray, new Entry($key, DB . ":query:{$i}",
145
+                                        str_format(localize("bookword", $totalNumber), $totalNumber), "text",
146
+                                        array(new LinkNavigation("?" . DB . "={$i}&page=9&query=" . $this->query)), "", $totalNumber));
147 147
                 $i++;
148 148
             }
149 149
             return;
150 150
         }
151 151
         if (empty ($scope)) {
152
-            $this->doSearchByCategory ();
152
+            $this->doSearchByCategory();
153 153
             return;
154 154
         }
155 155
 
156
-        $array = $this->searchByScope ($scope);
157
-        if (count ($array) == 2 && is_array ($array [0])) {
156
+        $array = $this->searchByScope($scope);
157
+        if (count($array) == 2 && is_array($array [0])) {
158 158
             list ($this->entryArray, $this->totalNumber) = $array;
159 159
         } else {
160 160
             $this->entryArray = $array;
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,11 +15,13 @@  discard block
 block discarded – undo
15 15
     const SCOPE_BOOK = "book";
16 16
     const SCOPE_PUBLISHER = "publisher";
17 17
 
18
-    private function useTypeahead () {
18
+    private function useTypeahead ()
19
+    {
19 20
         return !is_null (getURLParam ("search"));
20 21
     }
21 22
 
22
-    private function searchByScope ($scope, $limit = FALSE) {
23
+    private function searchByScope ($scope, $limit = FALSE)
24
+    {
23 25
         $n = $this->n;
24 26
         $numberPerPage = NULL;
25 27
         $queryNormedAndUp = $this->query;
@@ -54,7 +56,8 @@  discard block
 block discarded – undo
54 56
         return $array;
55 57
     }
56 58
 
57
-    public function doSearchByCategory () {
59
+    public function doSearchByCategory ()
60
+    {
58 61
         $database = GetUrlParam (DB);
59 62
         $out = array ();
60 63
         $pagequery = Base::PAGE_OPENSEARCH_QUERY;
Please login to merge, or discard this patch.
Upper-Lower-Casing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@  discard block
 block discarded – undo
19 19
         return !is_null (getURLParam ("search"));
20 20
     }
21 21
 
22
-    private function searchByScope ($scope, $limit = FALSE) {
22
+    private function searchByScope ($scope, $limit = false) {
23 23
         $n = $this->n;
24
-        $numberPerPage = NULL;
24
+        $numberPerPage = null;
25 25
         $queryNormedAndUp = $this->query;
26 26
         if (useNormAndUp ()) {
27 27
             $queryNormedAndUp = normAndUp ($this->query);
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         }
33 33
         switch ($scope) {
34 34
             case self::SCOPE_BOOK :
35
-                $array = Book::getBooksByStartingLetter ('%' . $queryNormedAndUp, $n, NULL, $numberPerPage);
35
+                $array = Book::getBooksByStartingLetter ('%' . $queryNormedAndUp, $n, null, $numberPerPage);
36 36
                 break;
37 37
             case self::SCOPE_AUTHOR :
38 38
                 $array = Author::getAuthorsForSearch ('%' . $queryNormedAndUp);
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
                 $array = Serie::getAllSeriesByQuery ($queryNormedAndUp);
42 42
                 break;
43 43
             case self::SCOPE_TAG :
44
-                $array = Tag::getAllTagsByQuery ($queryNormedAndUp, $n, NULL, $numberPerPage);
44
+                $array = Tag::getAllTagsByQuery ($queryNormedAndUp, $n, null, $numberPerPage);
45 45
                 break;
46 46
             case self::SCOPE_PUBLISHER :
47 47
                 $array = Publisher::getAllPublishersByQuery ($queryNormedAndUp);
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
                 if (in_array($key, getCurrentOption ('ignored_categories'))) {
82 82
                     continue;
83 83
                 }
84
-                $array = $this->searchByScope ($key, TRUE);
84
+                $array = $this->searchByScope ($key, true);
85 85
 
86 86
                 $i = 0;
87 87
                 if (count ($array) == 2 && is_array ($array [0])) {
Please login to merge, or discard this patch.
lib/PageCustomDetail.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,12 +8,12 @@
 block discarded – undo
8 8
 
9 9
 class PageCustomDetail extends Page
10 10
 {
11
-    public function InitializeContent ()
11
+    public function InitializeContent()
12 12
     {
13
-        $customId = getURLParam ("custom", NULL);
14
-        $custom = CustomColumn::getCustomById ($customId, $this->idGet);
15
-        $this->idPage = $custom->getEntryId ();
13
+        $customId = getURLParam("custom", NULL);
14
+        $custom = CustomColumn::getCustomById($customId, $this->idGet);
15
+        $this->idPage = $custom->getEntryId();
16 16
         $this->title = $custom->name;
17
-        list ($this->entryArray, $this->totalNumber) = Book::getBooksByCustom ($customId, $this->idGet, $this->n);
17
+        list ($this->entryArray, $this->totalNumber) = Book::getBooksByCustom($customId, $this->idGet, $this->n);
18 18
     }
19 19
 }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     public function InitializeContent ()
12 12
     {
13
-        $customId = getURLParam ("custom", NULL);
13
+        $customId = getURLParam ("custom", null);
14 14
         $this->title = CustomColumn::getAllTitle ($customId);
15 15
         $this->entryArray = CustomColumn::getAllCustoms($customId);
16 16
         $this->idPage = CustomColumn::getAllCustomsId ($customId);
Please login to merge, or discard this patch.
lib/PageBookDetail.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 
9 9
 class PageBookDetail extends Page
10 10
 {
11
-    public function InitializeContent ()
11
+    public function InitializeContent()
12 12
     {
13
-        $this->book = Book::getBookById ($this->idGet);
13
+        $this->book = Book::getBookById($this->idGet);
14 14
         $this->title = $this->book->title;
15 15
     }
16 16
 }
Please login to merge, or discard this patch.
lib/CustomColumn.php 3 patches
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -19,80 +19,80 @@
 block discarded – undo
19 19
         $this->customId = $pcustomId;
20 20
     }
21 21
 
22
-    public function getUri () {
23
-        return "?page=".parent::PAGE_CUSTOM_DETAIL."&custom={$this->customId}&id={$this->id}";
22
+    public function getUri() {
23
+        return "?page=" . parent::PAGE_CUSTOM_DETAIL . "&custom={$this->customId}&id={$this->id}";
24 24
     }
25 25
 
26
-    public function getEntryId () {
27
-        return self::ALL_CUSTOMS_ID.":".$this->customId.":".$this->id;
26
+    public function getEntryId() {
27
+        return self::ALL_CUSTOMS_ID . ":" . $this->customId . ":" . $this->id;
28 28
     }
29 29
 
30
-    public static function getTableName ($customId) {
30
+    public static function getTableName($customId) {
31 31
         return "custom_column_{$customId}";
32 32
     }
33 33
 
34
-    public static function getTableLinkName ($customId) {
34
+    public static function getTableLinkName($customId) {
35 35
         return "books_custom_column_{$customId}_link";
36 36
     }
37 37
 
38
-    public static function getTableLinkColumn ($customId) {
38
+    public static function getTableLinkColumn($customId) {
39 39
         return "value";
40 40
     }
41 41
 
42
-    public static function getAllCustomsId ($customId) {
42
+    public static function getAllCustomsId($customId) {
43 43
         return self::ALL_CUSTOMS_ID . ":" . $customId;
44 44
     }
45 45
 
46
-    public static function getUriAllCustoms ($customId) {
46
+    public static function getUriAllCustoms($customId) {
47 47
         return "?page=" . parent::PAGE_ALL_CUSTOMS . "&custom={$customId}";
48 48
     }
49 49
 
50
-    public static function getAllTitle ($customId) {
51
-        $result = parent::getDb ()->prepare('select name from custom_columns where id = ?');
52
-        $result->execute (array ($customId));
53
-        $post = $result->fetchObject ();
50
+    public static function getAllTitle($customId) {
51
+        $result = parent::getDb()->prepare('select name from custom_columns where id = ?');
52
+        $result->execute(array($customId));
53
+        $post = $result->fetchObject();
54 54
         return $post->name;
55 55
     }
56 56
 
57
-    public static function getCustomId ($lookup) {
58
-        $result = parent::getDb ()->prepare('select id from custom_columns where label = ?');
59
-        $result->execute (array ($lookup));
60
-        if ($post = $result->fetchObject ()) {
57
+    public static function getCustomId($lookup) {
58
+        $result = parent::getDb()->prepare('select id from custom_columns where label = ?');
59
+        $result->execute(array($lookup));
60
+        if ($post = $result->fetchObject()) {
61 61
             return $post->id;
62 62
         }
63 63
         return NULL;
64 64
     }
65 65
 
66 66
     public static function getCount($customId) {
67
-        $nCustoms = parent::executeQuerySingle ('select count(*) from ' . self::getTableName ($customId));
68
-        $entry = new Entry (self::getAllTitle ($customId), self::getAllCustomsId ($customId),
69
-            str_format (localize("tags.alphabetical", $nCustoms), $nCustoms), "text",
70
-            array ( new LinkNavigation (self::getUriAllCustoms ($customId))), "", $nCustoms);
67
+        $nCustoms = parent::executeQuerySingle('select count(*) from ' . self::getTableName($customId));
68
+        $entry = new Entry(self::getAllTitle($customId), self::getAllCustomsId($customId),
69
+            str_format(localize("tags.alphabetical", $nCustoms), $nCustoms), "text",
70
+            array(new LinkNavigation(self::getUriAllCustoms($customId))), "", $nCustoms);
71 71
         return $entry;
72 72
     }
73 73
 
74
-    public static function getCustomById ($customId, $id) {
75
-        $result = parent::getDb ()->prepare('select id, value as name from ' . self::getTableName ($customId) . ' where id = ?');
76
-        $result->execute (array ($id));
77
-        if ($post = $result->fetchObject ()) {
78
-            return new CustomColumn ($post->id, $post->name, $customId);
74
+    public static function getCustomById($customId, $id) {
75
+        $result = parent::getDb()->prepare('select id, value as name from ' . self::getTableName($customId) . ' where id = ?');
76
+        $result->execute(array($id));
77
+        if ($post = $result->fetchObject()) {
78
+            return new CustomColumn($post->id, $post->name, $customId);
79 79
         }
80 80
         return NULL;
81 81
     }
82 82
 
83 83
     public static function getAllCustoms($customId) {
84
-        $result = parent::getDb ()->query(str_format ('select {0}.id as id, {0}.value as name, count(*) as count
84
+        $result = parent::getDb()->query(str_format('select {0}.id as id, {0}.value as name, count(*) as count
85 85
 from {0}, {1}
86 86
 where {0}.id = {1}.{2}
87 87
 group by {0}.id, {0}.value
88
-order by {0}.value', self::getTableName ($customId), self::getTableLinkName ($customId), self::getTableLinkColumn ($customId)));
88
+order by {0}.value', self::getTableName($customId), self::getTableLinkName($customId), self::getTableLinkColumn($customId)));
89 89
         $entryArray = array();
90
-        while ($post = $result->fetchObject ())
90
+        while ($post = $result->fetchObject())
91 91
         {
92
-            $customColumn = new CustomColumn ($post->id, $post->name, $customId);
93
-            array_push ($entryArray, new Entry ($customColumn->name, $customColumn->getEntryId (),
94
-                str_format (localize("bookword", $post->count), $post->count), "text",
95
-                array ( new LinkNavigation ($customColumn->getUri ())), "", $post->count));
92
+            $customColumn = new CustomColumn($post->id, $post->name, $customId);
93
+            array_push($entryArray, new Entry($customColumn->name, $customColumn->getEntryId(),
94
+                str_format(localize("bookword", $post->count), $post->count), "text",
95
+                array(new LinkNavigation($customColumn->getUri())), "", $post->count));
96 96
         }
97 97
         return $entryArray;
98 98
     }
Please login to merge, or discard this patch.
Braces   +27 added lines, -15 removed lines patch added patch discarded remove patch
@@ -14,48 +14,58 @@  discard block
 block discarded – undo
14 14
     public $name;
15 15
     public $customId;
16 16
 
17
-    public function __construct($pid, $pname, $pcustomId) {
17
+    public function __construct($pid, $pname, $pcustomId)
18
+    {
18 19
         $this->id = $pid;
19 20
         $this->name = $pname;
20 21
         $this->customId = $pcustomId;
21 22
     }
22 23
 
23
-    public function getUri () {
24
+    public function getUri ()
25
+    {
24 26
         return "?page=".parent::PAGE_CUSTOM_DETAIL."&custom={$this->customId}&id={$this->id}";
25 27
     }
26 28
 
27
-    public function getEntryId () {
29
+    public function getEntryId ()
30
+    {
28 31
         return self::ALL_CUSTOMS_ID.":".$this->customId.":".$this->id;
29 32
     }
30 33
 
31
-    public static function getTableName ($customId) {
34
+    public static function getTableName ($customId)
35
+    {
32 36
         return "custom_column_{$customId}";
33 37
     }
34 38
 
35
-    public static function getTableLinkName ($customId) {
39
+    public static function getTableLinkName ($customId)
40
+    {
36 41
         return "books_custom_column_{$customId}_link";
37 42
     }
38 43
 
39
-    public static function getTableLinkColumn ($customId) {
44
+    public static function getTableLinkColumn ($customId)
45
+    {
40 46
         return "value";
41 47
     }
42 48
 
43
-    public static function getAllCustomsId ($customId) {
49
+    public static function getAllCustomsId ($customId)
50
+    {
44 51
         return self::ALL_CUSTOMS_ID . ":" . $customId;
45 52
     }
46 53
 
47
-    public static function getUriAllCustoms ($customId) {
54
+    public static function getUriAllCustoms ($customId)
55
+    {
48 56
         return "?page=" . parent::PAGE_ALL_CUSTOMS . "&custom={$customId}";
49 57
     }
50 58
 
51
-    public static function getAllTitle ($customId) {
59
+    public static function getAllTitle ($customId)
60
+    {
52 61
         $result = parent::getDb ()->prepare('select name from custom_columns where id = ?');
53 62
         $result->execute (array ($customId));
54 63
         $post = $result->fetchObject ();
55 64
         return $post->name;
56 65
     }
57 66
 
58
-    public static function getCustomId ($lookup) {
67
+    public static function getCustomId ($lookup)
68
+    {
59 69
         $result = parent::getDb ()->prepare('select id from custom_columns where label = ?');
60 70
         $result->execute (array ($lookup));
61 71
         if ($post = $result->fetchObject ()) {
@@ -64,7 +74,8 @@  discard block
 block discarded – undo
64 74
         return NULL;
65 75
     }
66 76
 
67
-    public static function getCount($customId) {
77
+    public static function getCount($customId)
78
+    {
68 79
         $nCustoms = parent::executeQuerySingle ('select count(*) from ' . self::getTableName ($customId));
69 80
         $entry = new Entry (self::getAllTitle ($customId), self::getAllCustomsId ($customId),
70 81
             str_format (localize("tags.alphabetical", $nCustoms), $nCustoms), "text",
@@ -72,7 +83,8 @@  discard block
 block discarded – undo
72 83
         return $entry;
73 84
     }
74 85
 
75
-    public static function getCustomById ($customId, $id) {
86
+    public static function getCustomById ($customId, $id)
87
+    {
76 88
         $result = parent::getDb ()->prepare('select id, value as name from ' . self::getTableName ($customId) . ' where id = ?');
77 89
         $result->execute (array ($id));
78 90
         if ($post = $result->fetchObject ()) {
@@ -81,15 +93,15 @@  discard block
 block discarded – undo
81 93
         return NULL;
82 94
     }
83 95
 
84
-    public static function getAllCustoms($customId) {
96
+    public static function getAllCustoms($customId)
97
+    {
85 98
         $result = parent::getDb ()->query(str_format ('select {0}.id as id, {0}.value as name, count(*) as count
86 99
 from {0}, {1}
87 100
 where {0}.id = {1}.{2}
88 101
 group by {0}.id, {0}.value
89 102
 order by {0}.value', self::getTableName ($customId), self::getTableLinkName ($customId), self::getTableLinkColumn ($customId)));
90 103
         $entryArray = array();
91
-        while ($post = $result->fetchObject ())
92
-        {
104
+        while ($post = $result->fetchObject ()) {
93 105
             $customColumn = new CustomColumn ($post->id, $post->name, $customId);
94 106
             array_push ($entryArray, new Entry ($customColumn->name, $customColumn->getEntryId (),
95 107
                 str_format (localize("bookword", $post->count), $post->count), "text",
Please login to merge, or discard this patch.
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         if ($post = $result->fetchObject ()) {
61 61
             return $post->id;
62 62
         }
63
-        return NULL;
63
+        return null;
64 64
     }
65 65
 
66 66
     public static function getCount($customId) {
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         if ($post = $result->fetchObject ()) {
78 78
             return new CustomColumn ($post->id, $post->name, $customId);
79 79
         }
80
-        return NULL;
80
+        return null;
81 81
     }
82 82
 
83 83
     public static function getAllCustoms($customId) {
Please login to merge, or discard this patch.
lib/Page.php 3 patches
Spacing   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -22,55 +22,55 @@  discard block
 block discarded – undo
22 22
     public $totalNumber = -1;
23 23
     public $entryArray = array();
24 24
 
25
-    public static function getPage ($pageId, $id, $query, $n)
25
+    public static function getPage($pageId, $id, $query, $n)
26 26
     {
27 27
         switch ($pageId) {
28 28
             case Base::PAGE_ALL_AUTHORS :
29
-                return new PageAllAuthors ($id, $query, $n);
29
+                return new PageAllAuthors($id, $query, $n);
30 30
             case Base::PAGE_AUTHORS_FIRST_LETTER :
31
-                return new PageAllAuthorsLetter ($id, $query, $n);
31
+                return new PageAllAuthorsLetter($id, $query, $n);
32 32
             case Base::PAGE_AUTHOR_DETAIL :
33
-                return new PageAuthorDetail ($id, $query, $n);
33
+                return new PageAuthorDetail($id, $query, $n);
34 34
             case Base::PAGE_ALL_TAGS :
35
-                return new PageAllTags ($id, $query, $n);
35
+                return new PageAllTags($id, $query, $n);
36 36
             case Base::PAGE_TAG_DETAIL :
37
-                return new PageTagDetail ($id, $query, $n);
37
+                return new PageTagDetail($id, $query, $n);
38 38
             case Base::PAGE_ALL_LANGUAGES :
39
-                return new PageAllLanguages ($id, $query, $n);
39
+                return new PageAllLanguages($id, $query, $n);
40 40
             case Base::PAGE_LANGUAGE_DETAIL :
41
-                return new PageLanguageDetail ($id, $query, $n);
41
+                return new PageLanguageDetail($id, $query, $n);
42 42
             case Base::PAGE_ALL_CUSTOMS :
43
-                return new PageAllCustoms ($id, $query, $n);
43
+                return new PageAllCustoms($id, $query, $n);
44 44
             case Base::PAGE_CUSTOM_DETAIL :
45
-                return new PageCustomDetail ($id, $query, $n);
45
+                return new PageCustomDetail($id, $query, $n);
46 46
             case Base::PAGE_ALL_RATINGS :
47
-                return new PageAllRating ($id, $query, $n);
47
+                return new PageAllRating($id, $query, $n);
48 48
             case Base::PAGE_RATING_DETAIL :
49
-                return new PageRatingDetail ($id, $query, $n);
49
+                return new PageRatingDetail($id, $query, $n);
50 50
             case Base::PAGE_ALL_SERIES :
51
-                return new PageAllSeries ($id, $query, $n);
51
+                return new PageAllSeries($id, $query, $n);
52 52
             case Base::PAGE_ALL_BOOKS :
53
-                return new PageAllBooks ($id, $query, $n);
53
+                return new PageAllBooks($id, $query, $n);
54 54
             case Base::PAGE_ALL_BOOKS_LETTER:
55
-                return new PageAllBooksLetter ($id, $query, $n);
55
+                return new PageAllBooksLetter($id, $query, $n);
56 56
             case Base::PAGE_ALL_RECENT_BOOKS :
57
-                return new PageRecentBooks ($id, $query, $n);
57
+                return new PageRecentBooks($id, $query, $n);
58 58
             case Base::PAGE_SERIE_DETAIL :
59
-                return new PageSerieDetail ($id, $query, $n);
59
+                return new PageSerieDetail($id, $query, $n);
60 60
             case Base::PAGE_OPENSEARCH_QUERY :
61
-                return new PageQueryResult ($id, $query, $n);
61
+                return new PageQueryResult($id, $query, $n);
62 62
             case Base::PAGE_BOOK_DETAIL :
63
-                return new PageBookDetail ($id, $query, $n);
63
+                return new PageBookDetail($id, $query, $n);
64 64
             case Base::PAGE_ALL_PUBLISHERS:
65
-                return new PageAllPublishers ($id, $query, $n);
65
+                return new PageAllPublishers($id, $query, $n);
66 66
             case Base::PAGE_PUBLISHER_DETAIL :
67
-                return new PagePublisherDetail ($id, $query, $n);
67
+                return new PagePublisherDetail($id, $query, $n);
68 68
             case Base::PAGE_ABOUT :
69
-                return new PageAbout ($id, $query, $n);
69
+                return new PageAbout($id, $query, $n);
70 70
             case Base::PAGE_CUSTOMIZE :
71
-                return new PageCustomize ($id, $query, $n);
71
+                return new PageCustomize($id, $query, $n);
72 72
             default:
73
-                $page = new Page ($id, $query, $n);
73
+                $page = new Page($id, $query, $n);
74 74
                 $page->idPage = "cops:catalog";
75 75
                 return $page;
76 76
         }
@@ -83,96 +83,96 @@  discard block
 block discarded – undo
83 83
         $this->query = $pquery;
84 84
         $this->n = $pn;
85 85
         $this->favicon = $config['cops_icon'];
86
-        $this->authorName = empty($config['cops_author_name']) ? utf8_encode('Sébastien Lucas') : $config['cops_author_name'];
87
-        $this->authorUri = empty($config['cops_author_uri']) ? 'http://blog.slucas.fr' : $config['cops_author_uri'];
88
-        $this->authorEmail = empty($config['cops_author_email']) ? '[email protected]' : $config['cops_author_email'];
86
+        $this->authorName = empty($config['cops_author_name'])?utf8_encode('Sébastien Lucas'):$config['cops_author_name'];
87
+        $this->authorUri = empty($config['cops_author_uri'])?'http://blog.slucas.fr':$config['cops_author_uri'];
88
+        $this->authorEmail = empty($config['cops_author_email'])?'[email protected]':$config['cops_author_email'];
89 89
     }
90 90
 
91
-    public function InitializeContent ()
91
+    public function InitializeContent()
92 92
     {
93 93
         global $config;
94 94
         $this->title = $config['cops_title_default'];
95 95
         $this->subtitle = $config['cops_subtitle_default'];
96
-        if (Base::noDatabaseSelected ()) {
96
+        if (Base::noDatabaseSelected()) {
97 97
             $i = 0;
98
-            foreach (Base::getDbNameList () as $key) {
99
-                $nBooks = Book::getBookCount ($i);
100
-                array_push ($this->entryArray, new Entry ($key, "cops:{$i}:catalog",
101
-                                        str_format (localize ("bookword", $nBooks), $nBooks), "text",
102
-                                        array ( new LinkNavigation ("?" . DB . "={$i}")), "", $nBooks));
98
+            foreach (Base::getDbNameList() as $key) {
99
+                $nBooks = Book::getBookCount($i);
100
+                array_push($this->entryArray, new Entry($key, "cops:{$i}:catalog",
101
+                                        str_format(localize("bookword", $nBooks), $nBooks), "text",
102
+                                        array(new LinkNavigation("?" . DB . "={$i}")), "", $nBooks));
103 103
                 $i++;
104
-                Base::clearDb ();
104
+                Base::clearDb();
105 105
             }
106 106
         } else {
107
-            if (!in_array (PageQueryResult::SCOPE_AUTHOR, getCurrentOption ('ignored_categories'))) {
108
-                array_push ($this->entryArray, Author::getCount());
107
+            if (!in_array(PageQueryResult::SCOPE_AUTHOR, getCurrentOption('ignored_categories'))) {
108
+                array_push($this->entryArray, Author::getCount());
109 109
             }
110
-            if (!in_array (PageQueryResult::SCOPE_SERIES, getCurrentOption ('ignored_categories'))) {
110
+            if (!in_array(PageQueryResult::SCOPE_SERIES, getCurrentOption('ignored_categories'))) {
111 111
                 $series = Serie::getCount();
112
-                if (!is_null ($series)) array_push ($this->entryArray, $series);
112
+                if (!is_null($series)) array_push($this->entryArray, $series);
113 113
             }
114
-            if (!in_array (PageQueryResult::SCOPE_PUBLISHER, getCurrentOption ('ignored_categories'))) {
114
+            if (!in_array(PageQueryResult::SCOPE_PUBLISHER, getCurrentOption('ignored_categories'))) {
115 115
                 $publisher = Publisher::getCount();
116
-                if (!is_null ($publisher)) array_push ($this->entryArray, $publisher);
116
+                if (!is_null($publisher)) array_push($this->entryArray, $publisher);
117 117
             }
118
-            if (!in_array (PageQueryResult::SCOPE_TAG, getCurrentOption ('ignored_categories'))) {
118
+            if (!in_array(PageQueryResult::SCOPE_TAG, getCurrentOption('ignored_categories'))) {
119 119
                 $tags = Tag::getCount();
120
-                if (!is_null ($tags)) array_push ($this->entryArray, $tags);
120
+                if (!is_null($tags)) array_push($this->entryArray, $tags);
121 121
             }
122
-            if (!in_array (PageQueryResult::SCOPE_RATING, getCurrentOption ('ignored_categories'))) {
122
+            if (!in_array(PageQueryResult::SCOPE_RATING, getCurrentOption('ignored_categories'))) {
123 123
                 $rating = Rating::getCount();
124
-                if (!is_null ($rating)) array_push ($this->entryArray, $rating);
124
+                if (!is_null($rating)) array_push($this->entryArray, $rating);
125 125
             }
126
-            if (!in_array ("language", getCurrentOption ('ignored_categories'))) {
126
+            if (!in_array("language", getCurrentOption('ignored_categories'))) {
127 127
                 $languages = Language::getCount();
128
-                if (!is_null ($languages)) array_push ($this->entryArray, $languages);
128
+                if (!is_null($languages)) array_push($this->entryArray, $languages);
129 129
             }
130 130
             foreach ($config['cops_calibre_custom_column'] as $lookup) {
131
-                $customId = CustomColumn::getCustomId ($lookup);
132
-                if (!is_null ($customId)) {
133
-                    array_push ($this->entryArray, CustomColumn::getCount($customId));
131
+                $customId = CustomColumn::getCustomId($lookup);
132
+                if (!is_null($customId)) {
133
+                    array_push($this->entryArray, CustomColumn::getCount($customId));
134 134
                 }
135 135
             }
136
-            $this->entryArray = array_merge ($this->entryArray, Book::getCount());
136
+            $this->entryArray = array_merge($this->entryArray, Book::getCount());
137 137
 
138
-            if (Base::isMultipleDatabaseEnabled ()) $this->title =  Base::getDbName ();
138
+            if (Base::isMultipleDatabaseEnabled()) $this->title = Base::getDbName();
139 139
         }
140 140
     }
141 141
 
142
-    public function isPaginated ()
142
+    public function isPaginated()
143 143
     {
144
-        return (getCurrentOption ("max_item_per_page") != -1 &&
144
+        return (getCurrentOption("max_item_per_page") != -1 &&
145 145
                 $this->totalNumber != -1 &&
146
-                $this->totalNumber > getCurrentOption ("max_item_per_page"));
146
+                $this->totalNumber > getCurrentOption("max_item_per_page"));
147 147
     }
148 148
 
149
-    public function getNextLink ()
149
+    public function getNextLink()
150 150
     {
151
-        $currentUrl = preg_replace ("/\&n=.*?$/", "", "?" . getQueryString ());
152
-        if (($this->n) * getCurrentOption ("max_item_per_page") < $this->totalNumber) {
153
-            return new LinkNavigation ($currentUrl . "&n=" . ($this->n + 1), "next", localize ("paging.next.alternate"));
151
+        $currentUrl = preg_replace("/\&n=.*?$/", "", "?" . getQueryString());
152
+        if (($this->n) * getCurrentOption("max_item_per_page") < $this->totalNumber) {
153
+            return new LinkNavigation($currentUrl . "&n=" . ($this->n + 1), "next", localize("paging.next.alternate"));
154 154
         }
155 155
         return NULL;
156 156
     }
157 157
 
158
-    public function getPrevLink ()
158
+    public function getPrevLink()
159 159
     {
160
-        $currentUrl = preg_replace ("/\&n=.*?$/", "", "?" . getQueryString ());
160
+        $currentUrl = preg_replace("/\&n=.*?$/", "", "?" . getQueryString());
161 161
         if ($this->n > 1) {
162
-            return new LinkNavigation ($currentUrl . "&n=" . ($this->n - 1), "previous", localize ("paging.previous.alternate"));
162
+            return new LinkNavigation($currentUrl . "&n=" . ($this->n - 1), "previous", localize("paging.previous.alternate"));
163 163
         }
164 164
         return NULL;
165 165
     }
166 166
 
167
-    public function getMaxPage ()
167
+    public function getMaxPage()
168 168
     {
169
-        return ceil ($this->totalNumber / getCurrentOption ("max_item_per_page"));
169
+        return ceil($this->totalNumber / getCurrentOption("max_item_per_page"));
170 170
     }
171 171
 
172
-    public function containsBook ()
172
+    public function containsBook()
173 173
     {
174
-        if (count ($this->entryArray) == 0) return false;
175
-        if (get_class ($this->entryArray [0]) == "EntryBook") return true;
174
+        if (count($this->entryArray) == 0) return false;
175
+        if (get_class($this->entryArray [0]) == "EntryBook") return true;
176 176
         return false;
177 177
     }
178 178
 }
Please login to merge, or discard this patch.
Braces   +26 added lines, -9 removed lines patch added patch discarded remove patch
@@ -76,7 +76,8 @@  discard block
 block discarded – undo
76 76
         }
77 77
     }
78 78
 
79
-    public function __construct($pid, $pquery, $pn) {
79
+    public function __construct($pid, $pquery, $pn)
80
+    {
80 81
         global $config;
81 82
 
82 83
         $this->idGet = $pid;
@@ -109,23 +110,33 @@  discard block
 block discarded – undo
109 110
             }
110 111
             if (!in_array (PageQueryResult::SCOPE_SERIES, getCurrentOption ('ignored_categories'))) {
111 112
                 $series = Serie::getCount();
112
-                if (!is_null ($series)) array_push ($this->entryArray, $series);
113
+                if (!is_null ($series)) {
114
+                    array_push ($this->entryArray, $series);
115
+                }
113 116
             }
114 117
             if (!in_array (PageQueryResult::SCOPE_PUBLISHER, getCurrentOption ('ignored_categories'))) {
115 118
                 $publisher = Publisher::getCount();
116
-                if (!is_null ($publisher)) array_push ($this->entryArray, $publisher);
119
+                if (!is_null ($publisher)) {
120
+                    array_push ($this->entryArray, $publisher);
121
+                }
117 122
             }
118 123
             if (!in_array (PageQueryResult::SCOPE_TAG, getCurrentOption ('ignored_categories'))) {
119 124
                 $tags = Tag::getCount();
120
-                if (!is_null ($tags)) array_push ($this->entryArray, $tags);
125
+                if (!is_null ($tags)) {
126
+                    array_push ($this->entryArray, $tags);
127
+                }
121 128
             }
122 129
             if (!in_array (PageQueryResult::SCOPE_RATING, getCurrentOption ('ignored_categories'))) {
123 130
                 $rating = Rating::getCount();
124
-                if (!is_null ($rating)) array_push ($this->entryArray, $rating);
131
+                if (!is_null ($rating)) {
132
+                    array_push ($this->entryArray, $rating);
133
+                }
125 134
             }
126 135
             if (!in_array ("language", getCurrentOption ('ignored_categories'))) {
127 136
                 $languages = Language::getCount();
128
-                if (!is_null ($languages)) array_push ($this->entryArray, $languages);
137
+                if (!is_null ($languages)) {
138
+                    array_push ($this->entryArray, $languages);
139
+                }
129 140
             }
130 141
             foreach ($config['cops_calibre_custom_column'] as $lookup) {
131 142
                 $customId = CustomColumn::getCustomId ($lookup);
@@ -135,7 +146,9 @@  discard block
 block discarded – undo
135 146
             }
136 147
             $this->entryArray = array_merge ($this->entryArray, Book::getCount());
137 148
 
138
-            if (Base::isMultipleDatabaseEnabled ()) $this->title =  Base::getDbName ();
149
+            if (Base::isMultipleDatabaseEnabled ()) {
150
+                $this->title =  Base::getDbName ();
151
+            }
139 152
         }
140 153
     }
141 154
 
@@ -171,8 +184,12 @@  discard block
 block discarded – undo
171 184
 
172 185
     public function containsBook ()
173 186
     {
174
-        if (count ($this->entryArray) == 0) return false;
175
-        if (get_class ($this->entryArray [0]) == "EntryBook") return true;
187
+        if (count ($this->entryArray) == 0) {
188
+            return false;
189
+        }
190
+        if (get_class ($this->entryArray [0]) == "EntryBook") {
191
+            return true;
192
+        }
176 193
         return false;
177 194
     }
178 195
 }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         if ($post = $result->fetchObject ()) {
61 61
             return $post->id;
62 62
         }
63
-        return NULL;
63
+        return null;
64 64
     }
65 65
 
66 66
     public static function getCount($customId) {
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         if ($post = $result->fetchObject ()) {
78 78
             return new CustomColumn ($post->id, $post->name, $customId);
79 79
         }
80
-        return NULL;
80
+        return null;
81 81
     }
82 82
 
83 83
     public static function getAllCustoms($customId) {
Please login to merge, or discard this patch.
lib/PageAllBooksLetter.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,15 +8,15 @@
 block discarded – undo
8 8
 
9 9
 class PageAllBooksLetter extends Page
10 10
 {
11
-    public function InitializeContent ()
11
+    public function InitializeContent()
12 12
     {
13
-        list ($this->entryArray, $this->totalNumber) = Book::getBooksByStartingLetter ($this->idGet, $this->n);
14
-        $this->idPage = Book::getEntryIdByLetter ($this->idGet);
13
+        list ($this->entryArray, $this->totalNumber) = Book::getBooksByStartingLetter($this->idGet, $this->n);
14
+        $this->idPage = Book::getEntryIdByLetter($this->idGet);
15 15
 
16 16
         $count = $this->totalNumber;
17 17
         if ($count == -1)
18
-            $count = count ($this->entryArray);
18
+            $count = count($this->entryArray);
19 19
 
20
-        $this->title = str_format (localize ("splitByLetter.letter"), str_format (localize ("bookword", $count), $count), $this->idGet);
20
+        $this->title = str_format(localize("splitByLetter.letter"), str_format(localize("bookword", $count), $count), $this->idGet);
21 21
     }
22 22
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,8 +14,9 @@
 block discarded – undo
14 14
         $this->idPage = Book::getEntryIdByLetter ($this->idGet);
15 15
 
16 16
         $count = $this->totalNumber;
17
-        if ($count == -1)
18
-            $count = count ($this->entryArray);
17
+        if ($count == -1) {
18
+                    $count = count ($this->entryArray);
19
+        }
19 20
 
20 21
         $this->title = str_format (localize ("splitByLetter.letter"), str_format (localize ("bookword", $count), $count), $this->idGet);
21 22
     }
Please login to merge, or discard this patch.
lib/PageLanguageDetail.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,11 +8,11 @@
 block discarded – undo
8 8
 
9 9
 class PageLanguageDetail extends Page
10 10
 {
11
-    public function InitializeContent ()
11
+    public function InitializeContent()
12 12
     {
13
-        $language = Language::getLanguageById ($this->idGet);
14
-        $this->idPage = $language->getEntryId ();
13
+        $language = Language::getLanguageById($this->idGet);
14
+        $this->idPage = $language->getEntryId();
15 15
         $this->title = $language->lang_code;
16
-        list ($this->entryArray, $this->totalNumber) = Book::getBooksByLanguage ($this->idGet, $this->n);
16
+        list ($this->entryArray, $this->totalNumber) = Book::getBooksByLanguage($this->idGet, $this->n);
17 17
     }
18 18
 }
Please login to merge, or discard this patch.
lib/PageAllAuthorsLetter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@
 block discarded – undo
8 8
 
9 9
 class PageAllAuthorsLetter extends Page
10 10
 {
11
-    public function InitializeContent ()
11
+    public function InitializeContent()
12 12
     {
13
-        $this->idPage = Author::getEntryIdByLetter ($this->idGet);
14
-        $this->entryArray = Author::getAuthorsByStartingLetter ($this->idGet);
15
-        $this->title = str_format (localize ("splitByLetter.letter"), str_format (localize ("authorword", count ($this->entryArray)), count ($this->entryArray)), $this->idGet);
13
+        $this->idPage = Author::getEntryIdByLetter($this->idGet);
14
+        $this->entryArray = Author::getAuthorsByStartingLetter($this->idGet);
15
+        $this->title = str_format(localize("splitByLetter.letter"), str_format(localize("authorword", count($this->entryArray)), count($this->entryArray)), $this->idGet);
16 16
     }
17 17
 }
Please login to merge, or discard this patch.