Blame view

libraries/nextend2/nextend/library/applications/system/N2SystemApplication.php 260 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php

class N2SystemApplication extends N2Application
{

    public $name = "system";

    protected function autoload() {
        N2Loader::import(array(
            'libraries.embedwidget.embedwidget',
            'libraries.form.form'
        ));
    }

}