@@ -47,10 +47,10 @@ |
||
| 47 | 47 | { |
| 48 | 48 | global $rootPath; |
| 49 | 49 | |
| 50 | - self::$subfolders = '/' . str_replace('//', '/', str_replace(str_replace('\\', '/', $_SERVER['DOCUMENT_ROOT']), "", $rootPath)); |
|
| 50 | + self::$subfolders = '/'.str_replace('//', '/', str_replace(str_replace('\\', '/', $_SERVER['DOCUMENT_ROOT']), "", $rootPath)); |
|
| 51 | 51 | self::$requestUri = $_SERVER['REQUEST_URI']; |
| 52 | 52 | self::$queryString = $_SERVER['QUERY_STRING']; |
| 53 | - self::$relativeUri = str_replace('?' . self::$queryString, '', str_replace(self::$subfolders, '', self::$requestUri)); |
|
| 53 | + self::$relativeUri = str_replace('?'.self::$queryString, '', str_replace(self::$subfolders, '', self::$requestUri)); |
|
| 54 | 54 | self::$requestParameters = explode('/', self::$relativeUri); |
| 55 | 55 | |
| 56 | 56 | self::$get = $_GET; |
@@ -32,10 +32,10 @@ discard block |
||
| 32 | 32 | $imageContent = file_get_contents($imageContainer); |
| 33 | 33 | $this->_imageResource = imagecreatefromstring($imageContent); |
| 34 | 34 | } |
| 35 | - } elseif(is_string($imageContainer)) { |
|
| 35 | + } elseif (is_string($imageContainer)) { |
|
| 36 | 36 | $this->_imageResource = imagecreatefromstring($imageContainer); |
| 37 | 37 | } else { |
| 38 | - throw new \Exception('Could not create image resource, accepted inputs are: "resource of type (gd)", path_to_image and "string". <br /><pre>' . var_export($imageContainer, true) . '</pre>'); |
|
| 38 | + throw new \Exception('Could not create image resource, accepted inputs are: "resource of type (gd)", path_to_image and "string". <br /><pre>'.var_export($imageContainer, true).'</pre>'); |
|
| 39 | 39 | } |
| 40 | 40 | } |
| 41 | 41 | |
@@ -55,10 +55,10 @@ discard block |
||
| 55 | 55 | |
| 56 | 56 | if ($mimeTypeConstantValue == IMAGETYPE_GIF) { |
| 57 | 57 | return imagegif($imageResource, $path); |
| 58 | - } elseif ($mimeTypeConstantValue == IMAGETYPE_JPEG) { |
|
| 58 | + } elseif ($mimeTypeConstantValue == IMAGETYPE_JPEG) { |
|
| 59 | 59 | return imagejpeg($imageResource, $path, $quality); |
| 60 | 60 | } elseif ($mimeTypeConstantValue == IMAGETYPE_PNG) { |
| 61 | - return imagepng($imageResource, $path, (intval($quality / 10) -1)); |
|
| 61 | + return imagepng($imageResource, $path, (intval($quality / 10) - 1)); |
|
| 62 | 62 | } |
| 63 | 63 | else { |
| 64 | 64 | throw new \Exception('Not a valid mimetypeconstant given see function documentation'); |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | if (function_exists('exif_imagetype')) { |
| 80 | 80 | $exif = exif_imagetype($imagePath); |
| 81 | 81 | } else { |
| 82 | - if ((list($width, $height, $type, $attr) = getimagesize($imagePath)) !== false ) { |
|
| 82 | + if ((list($width, $height, $type, $attr) = getimagesize($imagePath)) !== false) { |
|
| 83 | 83 | $exif = $type; |
| 84 | 84 | } else { |
| 85 | 85 | $exif = false; |
@@ -99,86 +99,86 @@ discard block |
||
| 99 | 99 | public function CreateImageFromBmp($p_sFile) |
| 100 | 100 | { |
| 101 | 101 | // Load the image into a string |
| 102 | - $file = fopen($p_sFile,"rb"); |
|
| 103 | - $read = fread($file,10); |
|
| 104 | - while(!feof($file)&&($read<>"")) |
|
| 105 | - $read .= fread($file,1024); |
|
| 102 | + $file = fopen($p_sFile, "rb"); |
|
| 103 | + $read = fread($file, 10); |
|
| 104 | + while (!feof($file) && ($read <> "")) |
|
| 105 | + $read .= fread($file, 1024); |
|
| 106 | 106 | |
| 107 | - $temp = unpack("H*",$read); |
|
| 108 | - $hex = $temp[1]; |
|
| 109 | - $header = substr($hex,0,108); |
|
| 110 | - $width=null; |
|
| 111 | - $height=null; |
|
| 107 | + $temp = unpack("H*", $read); |
|
| 108 | + $hex = $temp[1]; |
|
| 109 | + $header = substr($hex, 0, 108); |
|
| 110 | + $width = null; |
|
| 111 | + $height = null; |
|
| 112 | 112 | |
| 113 | 113 | // Process the header |
| 114 | 114 | // Structure: http://www.fastgraph.com/help/bmp_header_format.html |
| 115 | - if (substr($header,0,4)=="424d") |
|
| 115 | + if (substr($header, 0, 4) == "424d") |
|
| 116 | 116 | { |
| 117 | 117 | // Cut it in parts of 2 bytes |
| 118 | - $header_parts = str_split($header,2); |
|
| 118 | + $header_parts = str_split($header, 2); |
|
| 119 | 119 | |
| 120 | 120 | // Get the width 4 bytes |
| 121 | - $width = hexdec($header_parts[19].$header_parts[18]); |
|
| 121 | + $width = hexdec($header_parts[19].$header_parts[18]); |
|
| 122 | 122 | |
| 123 | 123 | // Get the height 4 bytes |
| 124 | - $height = hexdec($header_parts[23].$header_parts[22]); |
|
| 124 | + $height = hexdec($header_parts[23].$header_parts[22]); |
|
| 125 | 125 | |
| 126 | 126 | // Unset the header params |
| 127 | 127 | unset($header_parts); |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | // Define starting X and Y |
| 131 | - $x = 0; |
|
| 132 | - $y = 1; |
|
| 131 | + $x = 0; |
|
| 132 | + $y = 1; |
|
| 133 | 133 | |
| 134 | 134 | // Create newimage |
| 135 | - $image = imagecreatetruecolor($width,$height); |
|
| 135 | + $image = imagecreatetruecolor($width, $height); |
|
| 136 | 136 | |
| 137 | 137 | // Grab the body from the image |
| 138 | - $body = substr($hex,108); |
|
| 138 | + $body = substr($hex, 108); |
|
| 139 | 139 | |
| 140 | 140 | // Calculate if padding at the end-line is needed |
| 141 | 141 | // Divided by two to keep overview. |
| 142 | 142 | // 1 byte = 2 HEX-chars |
| 143 | - $body_size = (strlen($body)/2); |
|
| 144 | - $header_size = ($width*$height); |
|
| 143 | + $body_size = (strlen($body) / 2); |
|
| 144 | + $header_size = ($width * $height); |
|
| 145 | 145 | |
| 146 | 146 | // Use end-line padding? Only when needed |
| 147 | - $usePadding = ($body_size>($header_size*3)+4); |
|
| 147 | + $usePadding = ($body_size > ($header_size * 3) + 4); |
|
| 148 | 148 | |
| 149 | 149 | // Using a for-loop with index-calculation instaid of str_split to avoid large memory consumption |
| 150 | 150 | // Calculate the next DWORD-position in the body |
| 151 | - for ($i=0;$i<$body_size;$i+=3) |
|
| 151 | + for ($i = 0; $i < $body_size; $i += 3) |
|
| 152 | 152 | { |
| 153 | 153 | // Calculate line-ending and padding |
| 154 | - if ($x>=$width) |
|
| 154 | + if ($x >= $width) |
|
| 155 | 155 | { |
| 156 | 156 | // If padding needed, ignore image-padding |
| 157 | 157 | // Shift i to the ending of the current 32-bit-block |
| 158 | 158 | if ($usePadding) |
| 159 | - $i += $width%4; |
|
| 159 | + $i += $width % 4; |
|
| 160 | 160 | |
| 161 | 161 | // Reset horizontal position |
| 162 | - $x = 0; |
|
| 162 | + $x = 0; |
|
| 163 | 163 | |
| 164 | 164 | // Raise the height-position (bottom-up) |
| 165 | 165 | $y++; |
| 166 | 166 | |
| 167 | 167 | // Reached the image-height? Break the for-loop |
| 168 | - if ($y>$height) |
|
| 168 | + if ($y > $height) |
|
| 169 | 169 | break; |
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | // Calculation of the RGB-pixel (defined as BGR in image-data) |
| 173 | 173 | // Define $i_pos as absolute position in the body |
| 174 | - $i_pos = $i*2; |
|
| 175 | - $r = hexdec($body[$i_pos+4].$body[$i_pos+5]); |
|
| 176 | - $g = hexdec($body[$i_pos+2].$body[$i_pos+3]); |
|
| 177 | - $b = hexdec($body[$i_pos].$body[$i_pos+1]); |
|
| 174 | + $i_pos = $i * 2; |
|
| 175 | + $r = hexdec($body[$i_pos + 4].$body[$i_pos + 5]); |
|
| 176 | + $g = hexdec($body[$i_pos + 2].$body[$i_pos + 3]); |
|
| 177 | + $b = hexdec($body[$i_pos].$body[$i_pos + 1]); |
|
| 178 | 178 | |
| 179 | 179 | // Calculate and draw the pixel |
| 180 | - $color = imagecolorallocate($image,$r,$g,$b); |
|
| 181 | - imagesetpixel($image,$x,$height-$y,$color); |
|
| 180 | + $color = imagecolorallocate($image, $r, $g, $b); |
|
| 181 | + imagesetpixel($image, $x, $height - $y, $color); |
|
| 182 | 182 | |
| 183 | 183 | // Raise the horizontal position |
| 184 | 184 | $x++; |
@@ -3,9 +3,9 @@ discard block |
||
| 3 | 3 | <a class="btn move ui-sortable-handle"><i class="fa fa-arrows-v"></i></a> |
| 4 | 4 | </div> |
| 5 | 5 | <?if ($static == true) { |
| 6 | - $fieldPrefix = 'bricks[' . $myBrickSlug . '][' . str_replace('.', '', str_replace(' ', '', microtime())) . '][fields]'; |
|
| 6 | + $fieldPrefix = 'bricks['.$myBrickSlug.']['.str_replace('.', '', str_replace(' ', '', microtime())).'][fields]'; |
|
| 7 | 7 | } else { |
| 8 | - $fieldPrefix = 'dynamicBricks[' . $brick->slug . '][' . str_replace('.', '', str_replace(' ', '', microtime())) . ']'; |
|
| 8 | + $fieldPrefix = 'dynamicBricks['.$brick->slug.']['.str_replace('.', '', str_replace(' ', '', microtime())).']'; |
|
| 9 | 9 | }?> |
| 10 | 10 | <? foreach ($brick->fields as $field) : ?> |
| 11 | 11 | <div class="form-element"> |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | <a class="btn move ui-sortable-handle"><i class="fa fa-arrows-v"></i></a> |
| 31 | 31 | <div class="form-element"> |
| 32 | 32 | <? endif ?> |
| 33 | - <? include(__DIR__ . '/fieldTypes/' . str_replace(' ', '-', $field->type) . '.php') ?> |
|
| 33 | + <? include(__DIR__.'/fieldTypes/'.str_replace(' ', '-', $field->type).'.php') ?> |
|
| 34 | 34 | <? if ($field->multiple == true && $field->type != 'Rich Text') : ?> |
| 35 | 35 | |
| 36 | 36 | </div> |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | <li class="grid-container"> |
| 53 | 53 | <div class="grid-box-10"> |
| 54 | 54 | <div class="grid-inner form-element"> |
| 55 | - <? include(__DIR__ . '/fieldTypes/' . str_replace(' ', '-', $field->type) . '.php') ?> |
|
| 55 | + <? include(__DIR__.'/fieldTypes/'.str_replace(' ', '-', $field->type).'.php') ?> |
|
| 56 | 56 | </div> |
| 57 | 57 | </div> |
| 58 | 58 | <div class="grid-box-2"> |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | </div> |
| 63 | 63 | </div> |
| 64 | 64 | </li> |
| 65 | - <?$value='';?> |
|
| 65 | + <?$value = ''; ?> |
|
| 66 | 66 | <? endforeach ?> |
| 67 | 67 | <? endif ?> |
| 68 | 68 | </ul> |
@@ -79,10 +79,10 @@ discard block |
||
| 79 | 79 | <a class="btn error js-deletemultiple"><i class="fa fa-times"></i></a> |
| 80 | 80 | <a class="btn move ui-sortable-handle"><i class="fa fa-arrows-v"></i></a> |
| 81 | 81 | <div class="form-element"> |
| 82 | - <? include(__DIR__ . '/fieldTypes/' . str_replace(' ', '-', $field->type) . '.php') ?> |
|
| 82 | + <? include(__DIR__.'/fieldTypes/'.str_replace(' ', '-', $field->type).'.php') ?> |
|
| 83 | 83 | </div> |
| 84 | 84 | </li> |
| 85 | - <?$value='';?> |
|
| 85 | + <?$value = ''; ?> |
|
| 86 | 86 | <? endforeach ?> |
| 87 | 87 | <? endif ?> |
| 88 | 88 | </div> |
@@ -91,5 +91,5 @@ discard block |
||
| 91 | 91 | <a class="btn js-addrtemultiple">+</a> |
| 92 | 92 | <? endif ?> |
| 93 | 93 | </div> |
| 94 | - <?$value='';?> |
|
| 94 | + <?$value = ''; ?> |
|
| 95 | 95 | <? endforeach ?> |
@@ -6,12 +6,12 @@ discard block |
||
| 6 | 6 | } |
| 7 | 7 | ?> |
| 8 | 8 | <div class="rte"> |
| 9 | - <div id="summernote_<?=str_replace(']', '-', str_replace('[','-', $fieldPrefix)) . $field->slug?>_rte_<?=$summernoteInstances?>" class="summernote"><?=isset($value) ? $value : '' ?></div> |
|
| 9 | + <div id="summernote_<?=str_replace(']', '-', str_replace('[', '-', $fieldPrefix)).$field->slug?>_rte_<?=$summernoteInstances?>" class="summernote"><?=isset($value) ? $value : '' ?></div> |
|
| 10 | 10 | </div> |
| 11 | 11 | <textarea style="display:none;" id="summernote_<?=$field->slug?>_container_<?=$summernoteInstances?>" name="<?=$fieldPrefix?>[<?=$field->slug?>][]"></textarea> |
| 12 | 12 | <script> |
| 13 | 13 | $(document).ready(function () { |
| 14 | - $('#summernote_<?=str_replace(']', '-', str_replace('[','-', $fieldPrefix)) . $field->slug?>_rte_<?=$summernoteInstances?>').summernote({ |
|
| 14 | + $('#summernote_<?=str_replace(']', '-', str_replace('[', '-', $fieldPrefix)).$field->slug?>_rte_<?=$summernoteInstances?>').summernote({ |
|
| 15 | 15 | height: 300, |
| 16 | 16 | toolbar: [ |
| 17 | 17 | //[groupname, [button list]] |
@@ -29,4 +29,4 @@ discard block |
||
| 29 | 29 | if (!isset($GLOBALS['rteList'])) { |
| 30 | 30 | $GLOBALS['rteList'] = array(); |
| 31 | 31 | } |
| 32 | -$GLOBALS['rteList'][] = 'summernote_' . str_replace(']', '-', str_replace('[','-', $fieldPrefix)) . $field->slug . '_rte_' . $summernoteInstances ?> |
|
| 32 | +$GLOBALS['rteList'][] = 'summernote_'.str_replace(']', '-', str_replace('[', '-', $fieldPrefix)).$field->slug.'_rte_'.$summernoteInstances ?> |
|
@@ -65,12 +65,12 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | private function config() |
| 67 | 67 | { |
| 68 | - $configPath = __DIR__ . '/../../config.json'; |
|
| 68 | + $configPath = __DIR__.'/../../config.json'; |
|
| 69 | 69 | if (realpath($configPath) !== false) { |
| 70 | 70 | $json = file_get_contents($configPath); |
| 71 | 71 | $this->config = json_decode($json); |
| 72 | 72 | } else { |
| 73 | - throw new \Exception('Couldn\'t find config file in path ' . $configPath); |
|
| 73 | + throw new \Exception('Couldn\'t find config file in path '.$configPath); |
|
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | 76 | |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | private function sitemapMatching($request) |
| 94 | 94 | { |
| 95 | 95 | $sitemap = $this->storage->getSitemap(); |
| 96 | - $relativeUri = '/' . $request::$relativeUri; |
|
| 96 | + $relativeUri = '/'.$request::$relativeUri; |
|
| 97 | 97 | |
| 98 | 98 | foreach ($sitemap as $sitemapItem) { |
| 99 | 99 | if ($sitemapItem->regex) { |
@@ -156,17 +156,17 @@ discard block |
||
| 156 | 156 | * @return mixed |
| 157 | 157 | * @throws \Exception |
| 158 | 158 | */ |
| 159 | - private function getComponentObject($class='', $template='', $parameters=array(), $matchedSitemapItem) |
|
| 159 | + private function getComponentObject($class = '', $template = '', $parameters = array(), $matchedSitemapItem) |
|
| 160 | 160 | { |
| 161 | - $libraryComponentName = '\\library\\components\\' . $class; |
|
| 162 | - $userComponentName = '\\components\\' . $class; |
|
| 161 | + $libraryComponentName = '\\library\\components\\'.$class; |
|
| 162 | + $userComponentName = '\\components\\'.$class; |
|
| 163 | 163 | |
| 164 | 164 | if (\autoLoad($libraryComponentName, false)) { |
| 165 | 165 | $component = new $libraryComponentName($template, $this->request, $parameters, $matchedSitemapItem); |
| 166 | 166 | } elseif (\autoLoad($userComponentName, false)) { |
| 167 | 167 | $component = new $userComponentName($template, $this->request, $parameters, $matchedSitemapItem); |
| 168 | 168 | } else { |
| 169 | - throw new \Exception('Could not load component ' . $class); |
|
| 169 | + throw new \Exception('Could not load component '.$class); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | if (!$component instanceof Component) { |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | public function setCachingHeaders() |
| 226 | 226 | { |
| 227 | 227 | header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + (60 * 60 * 24 * 2))); // 2 days |
| 228 | - header("Cache-Control: max-age=" . (60 * 60 * 24 * 2)); |
|
| 228 | + header("Cache-Control: max-age=".(60 * 60 * 24 * 2)); |
|
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | /** |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | * @param array $parameters |
| 42 | 42 | * @param $matchedSitemapItem |
| 43 | 43 | */ |
| 44 | - public function __construct($template='', Request $request, $parameters=array(), $matchedSitemapItem) |
|
| 44 | + public function __construct($template = '', Request $request, $parameters = array(), $matchedSitemapItem) |
|
| 45 | 45 | { |
| 46 | 46 | $this->template = $template; |
| 47 | 47 | $this->request = $request; |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | * |
| 68 | 68 | * @throws \Exception |
| 69 | 69 | */ |
| 70 | - public function render($application=null) |
|
| 70 | + public function render($application = null) |
|
| 71 | 71 | { |
| 72 | 72 | $this->renderedContent = $this->renderTemplate($this->template, true, $application); |
| 73 | 73 | } |
@@ -93,9 +93,9 @@ discard block |
||
| 93 | 93 | * @return string |
| 94 | 94 | * @throws \Exception |
| 95 | 95 | */ |
| 96 | - public function renderTemplate($template='', $obClean = true, $application=null) |
|
| 96 | + public function renderTemplate($template = '', $obClean = true, $application = null) |
|
| 97 | 97 | { |
| 98 | - $templatePath = __DIR__ . '/../../templates/' . $template . '.php'; |
|
| 98 | + $templatePath = __DIR__.'/../../templates/'.$template.'.php'; |
|
| 99 | 99 | if (realpath($templatePath) !== false) { |
| 100 | 100 | if ($obClean) { |
| 101 | 101 | ob_clean(); |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | return ob_get_contents(); |
| 113 | 113 | } else { |
| 114 | 114 | if ($template !== null) { // If template is null, its a application component, which doesnt have a template |
| 115 | - throw new \Exception('Couldnt find template ' . $templatePath); |
|
| 115 | + throw new \Exception('Couldnt find template '.$templatePath); |
|
| 116 | 116 | } |
| 117 | 117 | } |
| 118 | 118 | } |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | * @return string |
| 128 | 128 | * @throws \Exception |
| 129 | 129 | */ |
| 130 | - public function includeTemplate($template='', $parameters = array()) |
|
| 130 | + public function includeTemplate($template = '', $parameters = array()) |
|
| 131 | 131 | { |
| 132 | 132 | if (is_array($parameters)) { |
| 133 | 133 | foreach ($parameters as $name => $value) { |
@@ -96,7 +96,7 @@ |
||
| 96 | 96 | |
| 97 | 97 | if ($this->forceRedirect === true) { |
| 98 | 98 | if (substr($request::$relativeUri, 0, 2) !== $lang && $lang !== $this->defaultLanguage) { // if default language detected, no redirect |
| 99 | - header('Location: ' . $request::$subfolders . $lang . '/' . $request::$relativeUri); |
|
| 99 | + header('Location: '.$request::$subfolders.$lang.'/'.$request::$relativeUri); |
|
| 100 | 100 | exit; |
| 101 | 101 | } |
| 102 | 102 | } |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | if (isset($this->parameters['document'])) { |
| 84 | 84 | $this->runByDocumentParameter(); |
| 85 | 85 | } else { |
| 86 | - throw new \Exception('When not using a regex, you need to set the parameter `document` with the path to the document in this sitemap item: ' . $this->matchedSitemapItem->title); |
|
| 86 | + throw new \Exception('When not using a regex, you need to set the parameter `document` with the path to the document in this sitemap item: '.$this->matchedSitemapItem->title); |
|
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | 89 | |
@@ -100,9 +100,9 @@ discard block |
||
| 100 | 100 | $relativeDocumentUri = current($this->matchedSitemapItem->matches[1]); |
| 101 | 101 | if (isset($this->parameters['folder'])) { |
| 102 | 102 | if (substr($this->parameters['folder'], -1) !== '/') { |
| 103 | - $this->parameters['folder'] = $this->parameters['folder'] . '/'; |
|
| 103 | + $this->parameters['folder'] = $this->parameters['folder'].'/'; |
|
| 104 | 104 | } |
| 105 | - $relativeDocumentUri = $this->parameters['folder'] . $relativeDocumentUri; |
|
| 105 | + $relativeDocumentUri = $this->parameters['folder'].$relativeDocumentUri; |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | $document = $this->storage->getDocumentBySlug($relativeDocumentUri); |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | $whitelistIps = explode(',', $this->parameters['whitelistIps']); |
| 149 | 149 | $whitelistIps = array_map("trim", $whitelistIps); |
| 150 | 150 | if (!in_array($remoteAddress, $whitelistIps)) { |
| 151 | - throw new \Exception('Ip address ' . $remoteAddress . ' is not on whitelist'); |
|
| 151 | + throw new \Exception('Ip address '.$remoteAddress.' is not on whitelist'); |
|
| 152 | 152 | } |
| 153 | 153 | } |
| 154 | 154 | } |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | $blacklistIps = explode(',', $this->parameters['blacklistIps']); |
| 164 | 164 | $blacklistIps = array_map("trim", $blacklistIps); |
| 165 | 165 | if (in_array($remoteAddress, $blacklistIps)) { |
| 166 | - throw new \Exception('Ip address ' . $remoteAddress . ' is on blacklist'); |
|
| 166 | + throw new \Exception('Ip address '.$remoteAddress.' is on blacklist'); |
|
| 167 | 167 | } |
| 168 | 168 | } |
| 169 | 169 | } |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | $this->parameters['mainNavClass'] = 'sitemap'; |
| 217 | 217 | if (isset($request::$post['title'], $request::$post['template'], $request::$post['component'])) { |
| 218 | 218 | $this->storage->addSitemapItem($request::$post); |
| 219 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/sitemap'); |
|
| 219 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/sitemap'); |
|
| 220 | 220 | exit; |
| 221 | 221 | } |
| 222 | 222 | } elseif ($relativeCmsUri == '/sitemap/edit' && isset($request::$get['slug'])) { |
@@ -225,13 +225,13 @@ discard block |
||
| 225 | 225 | $sitemapItem = $this->storage->getSitemapItemBySlug($request::$get['slug']); |
| 226 | 226 | if (isset($request::$post['title'], $request::$post['template'], $request::$post['component'])) { |
| 227 | 227 | $this->storage->saveSitemapItem($request::$get['slug'], $request::$post); |
| 228 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/sitemap'); |
|
| 228 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/sitemap'); |
|
| 229 | 229 | exit; |
| 230 | 230 | } |
| 231 | 231 | $this->parameters['sitemapItem'] = $sitemapItem; |
| 232 | 232 | } elseif ($relativeCmsUri == '/sitemap/delete' && isset($request::$get['slug'])) { |
| 233 | 233 | $this->storage->deleteSitemapItemBySlug($request::$get['slug']); |
| 234 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/sitemap'); |
|
| 234 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/sitemap'); |
|
| 235 | 235 | exit; |
| 236 | 236 | } |
| 237 | 237 | } |
@@ -255,12 +255,12 @@ discard block |
||
| 255 | 255 | $this->parameters['mainNavClass'] = 'images'; |
| 256 | 256 | if (isset($_FILES['file'])) { |
| 257 | 257 | $this->storage->addImage($_FILES['file']); |
| 258 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/images'); |
|
| 258 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/images'); |
|
| 259 | 259 | exit; |
| 260 | 260 | } |
| 261 | 261 | } elseif ($relativeCmsUri == '/images/delete' && isset($request::$get['file'])) { |
| 262 | 262 | $this->storage->deleteImageByName($request::$get['file']); |
| 263 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/images'); |
|
| 263 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/images'); |
|
| 264 | 264 | exit; |
| 265 | 265 | } elseif ($relativeCmsUri == '/images/show' && isset($request::$get['file'])) { |
| 266 | 266 | $this->subTemplate = 'cms/images/show'; |
@@ -301,14 +301,14 @@ discard block |
||
| 301 | 301 | $this->parameters['mainNavClass'] = 'files'; |
| 302 | 302 | if (isset($_FILES['file'])) { |
| 303 | 303 | $this->storage->addFile($_FILES['file']); |
| 304 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/files'); |
|
| 304 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/files'); |
|
| 305 | 305 | exit; |
| 306 | 306 | } |
| 307 | 307 | } elseif ($relativeCmsUri == '/files/get' && isset($request::$get['file'])) { |
| 308 | 308 | $this->downloadFile($request::$get['file']); |
| 309 | 309 | } elseif ($relativeCmsUri == '/files/delete' && isset($request::$get['file'])) { |
| 310 | 310 | $this->storage->deleteFileByName($request::$get['file']); |
| 311 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/files'); |
|
| 311 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/files'); |
|
| 312 | 312 | exit; |
| 313 | 313 | } |
| 314 | 314 | } |
@@ -319,21 +319,21 @@ discard block |
||
| 319 | 319 | private function downloadFile($slug) |
| 320 | 320 | { |
| 321 | 321 | $file = $this->storage->getFileByName($slug); |
| 322 | - $path = realpath(__DIR__ . '/../../www/files/'); |
|
| 323 | - $quoted = sprintf('"%s"', addcslashes(basename($path . '/' . $file->file), '"\\')); |
|
| 324 | - $size = filesize($path . '/' . $file->file); |
|
| 322 | + $path = realpath(__DIR__.'/../../www/files/'); |
|
| 323 | + $quoted = sprintf('"%s"', addcslashes(basename($path.'/'.$file->file), '"\\')); |
|
| 324 | + $size = filesize($path.'/'.$file->file); |
|
| 325 | 325 | |
| 326 | 326 | header('Content-Description: File Transfer'); |
| 327 | - header('Content-Type: ' . $file->type); |
|
| 328 | - header('Content-Disposition: attachment; filename=' . $quoted); |
|
| 327 | + header('Content-Type: '.$file->type); |
|
| 328 | + header('Content-Disposition: attachment; filename='.$quoted); |
|
| 329 | 329 | header('Content-Transfer-Encoding: binary'); |
| 330 | 330 | header('Connection: Keep-Alive'); |
| 331 | 331 | header('Expires: 0'); |
| 332 | 332 | header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); |
| 333 | 333 | header('Pragma: public'); |
| 334 | - header('Content-Length: ' . $size); |
|
| 334 | + header('Content-Length: '.$size); |
|
| 335 | 335 | |
| 336 | - readfile($path . '/' . $file->file); |
|
| 336 | + readfile($path.'/'.$file->file); |
|
| 337 | 337 | exit; |
| 338 | 338 | } |
| 339 | 339 | |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | if (isset($request::$get['documentType'])) { |
| 370 | 370 | if (isset($request::$post['title'], $request::$get['documentType'], $request::$get['path'])) { |
| 371 | 371 | $this->storage->addDocument($request::$post); |
| 372 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/documents'); |
|
| 372 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/documents'); |
|
| 373 | 373 | exit; |
| 374 | 374 | } |
| 375 | 375 | $this->parameters['documentType'] = $this->storage->getDocumentTypeBySlug($request::$get['documentType'], true); |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | $this->parameters['smallestImage'] = $this->storage->getSmallestImageSet()->slug; |
| 384 | 384 | if (isset($request::$post['title'], $request::$get['slug'])) { |
| 385 | 385 | $this->storage->saveDocument($request::$post); |
| 386 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/documents'); |
|
| 386 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/documents'); |
|
| 387 | 387 | exit; |
| 388 | 388 | } |
| 389 | 389 | $this->parameters['document'] = $this->storage->getDocumentBySlug($request::$get['slug']); |
@@ -406,7 +406,7 @@ discard block |
||
| 406 | 406 | die(json_encode($result)); |
| 407 | 407 | } else if ($relativeCmsUri == '/documents/delete-document' && isset($request::$get['slug'])) { |
| 408 | 408 | $this->storage->deleteDocumentBySlug($request::$get['slug']); |
| 409 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/documents'); |
|
| 409 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/documents'); |
|
| 410 | 410 | exit; |
| 411 | 411 | } |
| 412 | 412 | } |
@@ -422,7 +422,7 @@ discard block |
||
| 422 | 422 | $this->parameters['mainNavClass'] = 'documents'; |
| 423 | 423 | if (isset($request::$post['title'], $request::$post['path'])) { |
| 424 | 424 | $this->storage->addDocumentFolder($request::$post); |
| 425 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/documents'); |
|
| 425 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/documents'); |
|
| 426 | 426 | exit; |
| 427 | 427 | } |
| 428 | 428 | } else if ($relativeCmsUri == '/documents/edit-folder' && isset($request::$get['slug'])) { |
@@ -435,11 +435,11 @@ discard block |
||
| 435 | 435 | array_pop($path); |
| 436 | 436 | $path = implode('/', $path); |
| 437 | 437 | |
| 438 | - $request::$get['path'] = '/' . $path; |
|
| 438 | + $request::$get['path'] = '/'.$path; |
|
| 439 | 439 | |
| 440 | 440 | if (isset($request::$post['title'], $request::$post['content'])) { |
| 441 | 441 | $this->storage->saveDocumentFolder($request::$post); |
| 442 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/documents'); |
|
| 442 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/documents'); |
|
| 443 | 443 | exit; |
| 444 | 444 | } |
| 445 | 445 | |
@@ -447,7 +447,7 @@ discard block |
||
| 447 | 447 | $this->parameters['folder'] = $folder; |
| 448 | 448 | } else if ($relativeCmsUri == '/documents/delete-folder' && isset($request::$get['slug'])) { |
| 449 | 449 | $this->storage->deleteDocumentFolderBySlug($request::$get['slug']); |
| 450 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/documents'); |
|
| 450 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/documents'); |
|
| 451 | 451 | exit; |
| 452 | 452 | } |
| 453 | 453 | } |
@@ -467,12 +467,12 @@ discard block |
||
| 467 | 467 | $this->parameters['mainNavClass'] = 'configuration'; |
| 468 | 468 | if (isset($_POST['username'])) { |
| 469 | 469 | $this->storage->addUser($request::$post); |
| 470 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/users'); |
|
| 470 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/users'); |
|
| 471 | 471 | exit; |
| 472 | 472 | } |
| 473 | 473 | } elseif ($relativeCmsUri == '/configuration/users/delete' && isset($request::$get['slug'])) { |
| 474 | 474 | $this->storage->deleteUserBySlug($request::$get['slug']); |
| 475 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/users'); |
|
| 475 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/users'); |
|
| 476 | 476 | exit; |
| 477 | 477 | } elseif ($relativeCmsUri == '/configuration/users/edit' && isset($request::$get['slug'])) { |
| 478 | 478 | $this->subTemplate = 'cms/configuration/users-form'; |
@@ -480,7 +480,7 @@ discard block |
||
| 480 | 480 | $this->parameters['user'] = $this->storage->getUserBySlug($request::$get['slug']); |
| 481 | 481 | if (isset($_POST['username'])) { |
| 482 | 482 | $this->storage->saveUser($request::$get['slug'], $request::$post); |
| 483 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/users'); |
|
| 483 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/users'); |
|
| 484 | 484 | exit; |
| 485 | 485 | } |
| 486 | 486 | } |
@@ -502,7 +502,7 @@ discard block |
||
| 502 | 502 | $bricks = $this->storage->getBricks(); |
| 503 | 503 | if (isset($request::$post['title'])) { |
| 504 | 504 | $this->storage->addDocumentType($request::$post); |
| 505 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/document-types'); |
|
| 505 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/document-types'); |
|
| 506 | 506 | exit; |
| 507 | 507 | } |
| 508 | 508 | $this->parameters['bricks'] = $bricks; |
@@ -513,14 +513,14 @@ discard block |
||
| 513 | 513 | $bricks = $this->storage->getBricks(); |
| 514 | 514 | if (isset($request::$post['title'])) { |
| 515 | 515 | $this->storage->saveDocumentType($request::$get['slug'], $request::$post); |
| 516 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/document-types'); |
|
| 516 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/document-types'); |
|
| 517 | 517 | exit; |
| 518 | 518 | } |
| 519 | 519 | $this->parameters['documentType'] = $documentType; |
| 520 | 520 | $this->parameters['bricks'] = $bricks; |
| 521 | 521 | } elseif ($relativeCmsUri == '/configuration/document-types/delete' && isset($request::$get['slug'])) { |
| 522 | 522 | $this->storage->deleteDocumentTypeBySlug($request::$get['slug']); |
| 523 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/document-types'); |
|
| 523 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/document-types'); |
|
| 524 | 524 | exit; |
| 525 | 525 | } |
| 526 | 526 | } |
@@ -540,7 +540,7 @@ discard block |
||
| 540 | 540 | $this->parameters['mainNavClass'] = 'configuration'; |
| 541 | 541 | if (isset($request::$post['title'])) { |
| 542 | 542 | $this->storage->addBrick($request::$post); |
| 543 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/bricks'); |
|
| 543 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/bricks'); |
|
| 544 | 544 | exit; |
| 545 | 545 | } |
| 546 | 546 | } elseif ($relativeCmsUri == '/configuration/bricks/edit' && isset($request::$get['slug'])) { |
@@ -549,13 +549,13 @@ discard block |
||
| 549 | 549 | $brick = $this->storage->getBrickBySlug($request::$get['slug']); |
| 550 | 550 | if (isset($request::$post['title'])) { |
| 551 | 551 | $this->storage->saveBrick($request::$get['slug'], $request::$post); |
| 552 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/bricks'); |
|
| 552 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/bricks'); |
|
| 553 | 553 | exit; |
| 554 | 554 | } |
| 555 | 555 | $this->parameters['brick'] = $brick; |
| 556 | 556 | } elseif ($relativeCmsUri == '/configuration/bricks/delete' && isset($request::$get['slug'])) { |
| 557 | 557 | $this->storage->deleteBrickBySlug($request::$get['slug']); |
| 558 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/bricks'); |
|
| 558 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/bricks'); |
|
| 559 | 559 | exit; |
| 560 | 560 | } elseif ($relativeCmsUri == '/configuration/image-set') { |
| 561 | 561 | $this->subTemplate = 'cms/configuration/image-set'; |
@@ -580,7 +580,7 @@ discard block |
||
| 580 | 580 | $imageSet = $this->storage->getImageSetBySlug($request::$get['slug']); |
| 581 | 581 | if (isset($request::$post['title'])) { |
| 582 | 582 | $this->storage->saveImageSet($request::$get['slug'], $request::$post); |
| 583 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/image-set'); |
|
| 583 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/image-set'); |
|
| 584 | 584 | exit; |
| 585 | 585 | } |
| 586 | 586 | $this->parameters['imageSet'] = $imageSet; |
@@ -589,12 +589,12 @@ discard block |
||
| 589 | 589 | $this->parameters['mainNavClass'] = 'configuration'; |
| 590 | 590 | if (isset($request::$post['title'])) { |
| 591 | 591 | $this->storage->addImageSet($request::$post); |
| 592 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/image-set'); |
|
| 592 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/image-set'); |
|
| 593 | 593 | exit; |
| 594 | 594 | } |
| 595 | 595 | } elseif ($relativeCmsUri == '/configuration/image-set/delete' && isset($request::$get['slug'])) { |
| 596 | 596 | $this->storage->deleteImageSetBySlug($request::$get['slug']); |
| 597 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/image-set'); |
|
| 597 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/image-set'); |
|
| 598 | 598 | exit; |
| 599 | 599 | } |
| 600 | 600 | } |
@@ -614,7 +614,7 @@ discard block |
||
| 614 | 614 | $this->parameters['mainNavClass'] = 'configuration'; |
| 615 | 615 | if (isset($request::$post['title'])) { |
| 616 | 616 | $this->storage->addApplicationComponent($request::$post); |
| 617 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/application-components'); |
|
| 617 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/application-components'); |
|
| 618 | 618 | exit; |
| 619 | 619 | } |
| 620 | 620 | } elseif ($relativeCmsUri == '/configuration/application-components/edit' && isset($request::$get['slug'])) { |
@@ -623,13 +623,13 @@ discard block |
||
| 623 | 623 | $applicationComponent = $this->storage->getApplicationComponentBySlug($request::$get['slug']); |
| 624 | 624 | if (isset($request::$post['title'])) { |
| 625 | 625 | $this->storage->saveApplicationComponent($request::$get['slug'], $request::$post); |
| 626 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/application-components'); |
|
| 626 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/application-components'); |
|
| 627 | 627 | exit; |
| 628 | 628 | } |
| 629 | 629 | $this->parameters['applicationComponent'] = $applicationComponent; |
| 630 | 630 | } elseif ($relativeCmsUri == '/configuration/application-components/delete' && isset($request::$get['slug'])) { |
| 631 | 631 | $this->storage->deleteApplicationComponentBySlug($request::$get['slug']); |
| 632 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix'] . '/configuration/application-components'); |
|
| 632 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix'].'/configuration/application-components'); |
|
| 633 | 633 | exit; |
| 634 | 634 | } |
| 635 | 635 | } |
@@ -639,7 +639,7 @@ discard block |
||
| 639 | 639 | if ($relativeCmsUri == '/log-off') { |
| 640 | 640 | $_SESSION['cloudcontrol'] = null; |
| 641 | 641 | unset($_SESSION['cloudcontrol']); |
| 642 | - header('Location: ' . $request::$subfolders . $this->parameters['cmsPrefix']); |
|
| 642 | + header('Location: '.$request::$subfolders.$this->parameters['cmsPrefix']); |
|
| 643 | 643 | exit; |
| 644 | 644 | } |
| 645 | 645 | } |