@@ -11,6 +11,10 @@ |
||
| 11 | 11 | function arrayHtmlParser($_array) { |
| 12 | 12 | return travelStringArray($_array,"htmlParser"); |
| 13 | 13 | } |
| 14 | + |
|
| 15 | + /** |
|
| 16 | + * @param string $_function |
|
| 17 | + */ |
|
| 14 | 18 | function travelStringArray ( $_array, $_function ) { |
| 15 | 19 | if (is_array($_array)) { |
| 16 | 20 | foreach ($_array as $k => $v) { |
@@ -1,27 +1,27 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | function utf8ize($_array) { |
| 3 | - return travelStringArray($_array,"utf8_encode"); |
|
| 3 | + return travelStringArray($_array, "utf8_encode"); |
|
| 4 | 4 | } |
| 5 | 5 | function unutf8ize($_array) { |
| 6 | - return travelStringArray($_array,"utf8_decode"); |
|
| 6 | + return travelStringArray($_array, "utf8_decode"); |
|
| 7 | 7 | } |
| 8 | 8 | function arraySlash($_array) { |
| 9 | - return travelStringArray($_array,"addslashes"); |
|
| 9 | + return travelStringArray($_array, "addslashes"); |
|
| 10 | 10 | } |
| 11 | 11 | function arrayHtmlParser($_array) { |
| 12 | - return travelStringArray($_array,"htmlParser"); |
|
| 12 | + return travelStringArray($_array, "htmlParser"); |
|
| 13 | 13 | } |
| 14 | - function travelStringArray ( $_array, $_function ) { |
|
| 14 | + function travelStringArray($_array, $_function) { |
|
| 15 | 15 | if (is_array($_array)) { |
| 16 | 16 | foreach ($_array as $k => $v) { |
| 17 | 17 | $_array[$k] = travelStringArray($v, $_function); |
| 18 | 18 | } |
| 19 | - } else if (is_string ($_array)) { |
|
| 20 | - return call_user_func($_function,$_array); |
|
| 19 | + } else if (is_string($_array)) { |
|
| 20 | + return call_user_func($_function, $_array); |
|
| 21 | 21 | } |
| 22 | 22 | return $_array; |
| 23 | 23 | } |
| 24 | - function arrayDepth( $_array ) { |
|
| 24 | + function arrayDepth($_array) { |
|
| 25 | 25 | $maxDepth = 1; |
| 26 | 26 | foreach ($_array as $value) { |
| 27 | 27 | if (is_array($value)) { |
@@ -33,12 +33,12 @@ discard block |
||
| 33 | 33 | } |
| 34 | 34 | return $maxDepth; |
| 35 | 35 | } |
| 36 | - function arrayDump( $_array, $_name = "Array", $_tab = " " ) { |
|
| 36 | + function arrayDump($_array, $_name = "Array", $_tab = " ") { |
|
| 37 | 37 | $position = preg_replace('/ /', '', $_tab, 1); |
| 38 | 38 | echo "$position<span style=\"color:rgb(230,0,0)\">$_name:</span><br>"; |
| 39 | 39 | foreach ($_array as $k => $i) |
| 40 | - if(is_array($i)) |
|
| 41 | - arrayDump( $i, $k, " $_tab" ); |
|
| 40 | + if (is_array($i)) |
|
| 41 | + arrayDump($i, $k, " $_tab"); |
|
| 42 | 42 | else |
| 43 | 43 | echo "$_tab<b>$k:</b> $i<br>"; |
| 44 | 44 | } |
@@ -17,6 +17,10 @@ |
||
| 17 | 17 | }); |
| 18 | 18 | return $temp; |
| 19 | 19 | } |
| 20 | + |
|
| 21 | + /** |
|
| 22 | + * @param Closure $_function |
|
| 23 | + */ |
|
| 20 | 24 | function fetchInSubFolder( $_dir = "./", $_function) { |
| 21 | 25 | $temp = []; |
| 22 | 26 | if (is_dir($_dir)) { |
@@ -1,41 +1,41 @@ |
||
| 1 | 1 | <?php |
| 2 | - function subFolder( $_dir = "./" ) { |
|
| 2 | + function subFolder($_dir = "./") { |
|
| 3 | 3 | $temp = fetchInSubFolder($_dir, function() { |
| 4 | 4 | return true; |
| 5 | 5 | }); |
| 6 | 6 | return $temp; |
| 7 | 7 | } |
| 8 | - function subFolderFile( $_dir = "./" ) { |
|
| 9 | - $temp = fetchInSubFolder($_dir, function( $_file ) { |
|
| 8 | + function subFolderFile($_dir = "./") { |
|
| 9 | + $temp = fetchInSubFolder($_dir, function($_file) { |
|
| 10 | 10 | return !is_dir($_file); |
| 11 | 11 | }); |
| 12 | 12 | return $temp; |
| 13 | 13 | } |
| 14 | - function subFolderDir( $_dir = "./" ) { |
|
| 15 | - $temp = fetchInSubFolder($_dir, function( $_file ) { |
|
| 14 | + function subFolderDir($_dir = "./") { |
|
| 15 | + $temp = fetchInSubFolder($_dir, function($_file) { |
|
| 16 | 16 | return !is_file($_file); |
| 17 | 17 | }); |
| 18 | 18 | return $temp; |
| 19 | 19 | } |
| 20 | - function fetchInSubFolder( $_dir = "./", $_function) { |
|
| 20 | + function fetchInSubFolder($_dir = "./", $_function) { |
|
| 21 | 21 | $temp = []; |
| 22 | 22 | if (is_dir($_dir)) { |
| 23 | 23 | if ($dirOpened = opendir($_dir)) { |
| 24 | 24 | while (($file = readdir($dirOpened)) !== false) |
| 25 | - if( ($file !='.')&&($file !='..') ) |
|
| 26 | - if($_function($file)) |
|
| 27 | - array_push($temp,$file); |
|
| 25 | + if (($file != '.') && ($file != '..')) |
|
| 26 | + if ($_function($file)) |
|
| 27 | + array_push($temp, $file); |
|
| 28 | 28 | closedir($dirOpened); |
| 29 | 29 | } |
| 30 | 30 | } |
| 31 | 31 | return $temp; |
| 32 | 32 | } |
| 33 | - function requireSubfolder( $_dir = "./" ) { |
|
| 33 | + function requireSubfolder($_dir = "./") { |
|
| 34 | 34 | $temp = subFolderFile($_dir); |
| 35 | 35 | foreach ($temp as $i) |
| 36 | 36 | jRequire($_dir."/".$i); |
| 37 | 37 | } |
| 38 | - function require_js( $_dir = "./" ) { |
|
| 38 | + function require_js($_dir = "./") { |
|
| 39 | 39 | $tempArray = []; |
| 40 | 40 | $temp = subFolderFile($_dir); |
| 41 | 41 | foreach ($temp as $i) |
@@ -13,9 +13,9 @@ |
||
| 13 | 13 | } |
| 14 | 14 | |
| 15 | 15 | function minify_output($_buffer) { |
| 16 | - $search = array ( '/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s' ); |
|
| 17 | - $replace = array ( '>', '<', '\\1' ); |
|
| 18 | - if (preg_match("/\<html/i",$_buffer) == 1 && preg_match("/\<\/html\>/i",$_buffer) == 1) |
|
| 16 | + $search = array('/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s'); |
|
| 17 | + $replace = array('>', '<', '\\1'); |
|
| 18 | + if (preg_match("/\<html/i", $_buffer) == 1 && preg_match("/\<\/html\>/i", $_buffer) == 1) |
|
| 19 | 19 | $_buffer = preg_replace($search, $replace, utf8_decode($_buffer)); |
| 20 | 20 | return utf8_encode($_buffer); |
| 21 | 21 | } |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | - function htmlParser( $_str) { |
|
| 2 | + function htmlParser($_str) { |
|
| 3 | 3 | return htmlentities($_str, ENT_QUOTES | ENT_IGNORE, "UTF-8"); |
| 4 | 4 | } |
| 5 | 5 | ?> |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | class Statistic extends Module { |
| 3 | - public function __construct( $_webApp ) { |
|
| 3 | + public function __construct($_webApp) { |
|
| 4 | 4 | parent::__construct(); |
| 5 | 5 | $pages = []; |
| 6 | 6 | $stats = []; |
| 7 | 7 | $pages = $_webApp->pages; |
| 8 | - foreach ( $pages as $k => $v ) { |
|
| 8 | + foreach ($pages as $k => $v) { |
|
| 9 | 9 | $temp = new $v[0]($v[1]); |
| 10 | 10 | $temp->addDipendences(); |
| 11 | 11 | $stats[$k] = []; |
| 12 | 12 | $stats[$k]["page"] = $v[0]; |
| 13 | 13 | $stats[$k]["css"] = $temp->data["css"]; |
| 14 | - $stats[$k]["js"] = $temp->data["js"]; |
|
| 14 | + $stats[$k]["js"] = $temp->data["js"]; |
|
| 15 | 15 | } |
| 16 | 16 | $this->data = $stats; |
| 17 | 17 | } |
@@ -7,20 +7,20 @@ |
||
| 7 | 7 | parent::__construct(); |
| 8 | 8 | $args = func_get_args(); |
| 9 | 9 | $count = func_num_args(); |
| 10 | - if (method_exists($this,$func='__construct'.$count)) |
|
| 11 | - call_user_func_array(array($this,$func),$args); |
|
| 10 | + if (method_exists($this, $func = '__construct'.$count)) |
|
| 11 | + call_user_func_array(array($this, $func), $args); |
|
| 12 | 12 | } |
| 13 | 13 | public function __construct0() { |
| 14 | 14 | $this->connection = null; |
| 15 | 15 | $this->database = null; |
| 16 | 16 | } |
| 17 | - public function __construct4( $_srv, $_db, $_usr, $_pass) { |
|
| 17 | + public function __construct4($_srv, $_db, $_usr, $_pass) { |
|
| 18 | 18 | $this->connection = "mysql:host=$_srv;dbname=$_db"; |
| 19 | - $this->database = new PDO( $this->connection, $_usr, $_pass,array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES 'utf8'")); |
|
| 19 | + $this->database = new PDO($this->connection, $_usr, $_pass, array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES 'utf8'")); |
|
| 20 | 20 | $this->info = []; |
| 21 | - $this->info["server"] = $_srv; |
|
| 21 | + $this->info["server"] = $_srv; |
|
| 22 | 22 | $this->info["database"] = $_db; |
| 23 | - $this->info["user"] = $_usr; |
|
| 23 | + $this->info["user"] = $_usr; |
|
| 24 | 24 | $this->info["password"] = $_pass; |
| 25 | 25 | } |
| 26 | 26 | } |
@@ -22,17 +22,17 @@ discard block |
||
| 22 | 22 | $percent; |
| 23 | 23 | foreach (getGitLog() as $i) { |
| 24 | 24 | $cont++; |
| 25 | - if($cont % $nPerCol == 1) |
|
| 25 | + if ($cont % $nPerCol == 1) |
|
| 26 | 26 | echo '<div class="row">'; |
| 27 | - if(isset($i["tag"])) { |
|
| 28 | - $percent = explode(".",$i["tag"]); |
|
| 27 | + if (isset($i["tag"])) { |
|
| 28 | + $percent = explode(".", $i["tag"]); |
|
| 29 | 29 | $percent = 100 * intval($percent[0]) + 10 * intval($percent[1]) + intval($percent[2]); |
| 30 | 30 | } |
| 31 | 31 | ?> |
| 32 | 32 | <div class="col-lg-<?=$dim?>"> |
| 33 | 33 | <div class="well well-sm miniblock"> |
| 34 | 34 | <div class="autor"><b>Autor:</b> <?=$i["author"]?><br></div> |
| 35 | - <div class="tag"><b>Tag:</b> <?php if(isset($i["tag"])) echo $i["tag"]?><br></div> |
|
| 35 | + <div class="tag"><b>Tag:</b> <?php if (isset($i["tag"])) echo $i["tag"]?><br></div> |
|
| 36 | 36 | <div class="date"><b>Date:</b> <?=$i["date"]?><br></div> |
| 37 | 37 | <div class="message"><b>Message:</b> <?=$i["message"]?><br></div> |
| 38 | 38 | <div class="progress"> |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | </div> |
| 45 | 45 | </div> |
| 46 | 46 | <?php |
| 47 | - if($cont % $nPerCol == 0) |
|
| 47 | + if ($cont % $nPerCol == 0) |
|
| 48 | 48 | echo '</div>'; |
| 49 | 49 | } ?> |
| 50 | 50 | </div> |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | - if(isset($GLOBALS["JATEPath"])) |
|
| 2 | + if (isset($GLOBALS["JATEPath"])) |
|
| 3 | 3 | $GLOBALS["JATEPath"] = []; |
| 4 | 4 | $commonLocations = array( |
| 5 | 5 | "bower_components/JATE/dist/", |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | "../../dist/" |
| 8 | 8 | ); |
| 9 | 9 | foreach ($commonLocations as $i) |
| 10 | - if(file_exists($i."jate/coreEngine.php")) { |
|
| 10 | + if (file_exists($i."jate/coreEngine.php")) { |
|
| 11 | 11 | array_push($GLOBALS["JATEPath"], $i); |
| 12 | 12 | require_once($i."jate/coreEngine.php"); |
| 13 | 13 | break; |
@@ -1,4 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | + /** |
|
| 3 | + * @param string $_path |
|
| 4 | + */ |
|
| 2 | 5 | function requireComponent( $_path, $_local = true ) { |
| 3 | 6 | $path = getJFolder($_path, $_local, debug_backtrace()); |
| 4 | 7 | if(file_exists($path) && isPhp($path)) |
@@ -6,6 +9,10 @@ discard block |
||
| 6 | 9 | else |
| 7 | 10 | requireError($_path); |
| 8 | 11 | } |
| 12 | + |
|
| 13 | + /** |
|
| 14 | + * @param string $_path |
|
| 15 | + */ |
|
| 9 | 16 | function requireComponents( $_path, $_local = true ) { |
| 10 | 17 | $path = getJFolder($_path, $_local, debug_backtrace()); |
| 11 | 18 | if(file_exists($path)) { |
@@ -38,6 +45,10 @@ discard block |
||
| 38 | 45 | $path = getJFolder($_path, $_local, debug_backtrace()); |
| 39 | 46 | require_once( $path ); |
| 40 | 47 | } |
| 48 | + |
|
| 49 | + /** |
|
| 50 | + * @param boolean $_local |
|
| 51 | + */ |
|
| 41 | 52 | function getJFolder( $_path, $_local, $_stack ) { |
| 42 | 53 | if($_local) { |
| 43 | 54 | $stackInfo = $_stack; |
@@ -1,45 +1,45 @@ |
||
| 1 | 1 | <?php |
| 2 | - function requireComponent( $_path, $_local = true ) { |
|
| 2 | + function requireComponent($_path, $_local = true) { |
|
| 3 | 3 | $path = getJFolder($_path, $_local, debug_backtrace()); |
| 4 | - if(file_exists($path) && isPhp($path)) |
|
| 4 | + if (file_exists($path) && isPhp($path)) |
|
| 5 | 5 | jRequire($path, false, 0); |
| 6 | 6 | else |
| 7 | 7 | requireError($_path); |
| 8 | 8 | } |
| 9 | - function requireComponents( $_path, $_local = true ) { |
|
| 9 | + function requireComponents($_path, $_local = true) { |
|
| 10 | 10 | $path = getJFolder($_path, $_local, debug_backtrace()); |
| 11 | - if(file_exists($path)) { |
|
| 11 | + if (file_exists($path)) { |
|
| 12 | 12 | $files = subFolderFile($path); |
| 13 | 13 | foreach ($files as $i) { |
| 14 | - if(isPhp($path."/".$i)) |
|
| 14 | + if (isPhp($path."/".$i)) |
|
| 15 | 15 | requireComponent($path."/".$i, false, 0); |
| 16 | 16 | } |
| 17 | 17 | } else |
| 18 | 18 | requireError($_path); |
| 19 | 19 | } |
| 20 | - function requireError( $_path ) { |
|
| 20 | + function requireError($_path) { |
|
| 21 | 21 | global $DEBUG; |
| 22 | - if( $DEBUG == 1 ) |
|
| 22 | + if ($DEBUG == 1) |
|
| 23 | 23 | echo "Error load ($_path)<br>"; |
| 24 | 24 | } |
| 25 | - function isPhp ( $_file ) { |
|
| 26 | - if(!is_file($_file)) return false; |
|
| 25 | + function isPhp($_file) { |
|
| 26 | + if (!is_file($_file)) return false; |
|
| 27 | 27 | $info = pathinfo($_file); |
| 28 | 28 | return ($info["extension"] == "php") || ($info["extension"] == "PHP"); |
| 29 | 29 | } |
| 30 | - function requireModules( $_path, $_local = true ) { |
|
| 30 | + function requireModules($_path, $_local = true) { |
|
| 31 | 31 | $path = getJFolder($_path, $_local, debug_backtrace()); |
| 32 | 32 | $subFolders = subFolderDir($path); |
| 33 | 33 | foreach ($subFolders as $i) { |
| 34 | 34 | requireComponents($path."/".$i, false, 0); |
| 35 | 35 | } |
| 36 | 36 | } |
| 37 | - function jRequire( $_path, $_local = true ) { |
|
| 37 | + function jRequire($_path, $_local = true) { |
|
| 38 | 38 | $path = getJFolder($_path, $_local, debug_backtrace()); |
| 39 | - require_once( $path ); |
|
| 39 | + require_once($path); |
|
| 40 | 40 | } |
| 41 | - function getJFolder( $_path, $_local, $_stack ) { |
|
| 42 | - if($_local) { |
|
| 41 | + function getJFolder($_path, $_local, $_stack) { |
|
| 42 | + if ($_local) { |
|
| 43 | 43 | $stackInfo = $_stack; |
| 44 | 44 | $folder = dirname($stackInfo[0]["file"]); |
| 45 | 45 | $file = "$folder/$_path"; |