The class provides miscellaneous methods that are used all throughout the
application. It is the base class of the Contao library which provides the
central "import" method to load other library classes.
Usage:
class MyClass extends \System
{
public function __construct()
{
$this->import('Database');
}
}