Add Batflat 1.3.4 to repository

This commit is contained in:
Klocus
2018-03-12 13:23:44 +01:00
parent 107f448061
commit efa31cb734
283 changed files with 22607 additions and 1 deletions

28
inc/core/AdminModule.php Normal file
View File

@@ -0,0 +1,28 @@
<?php
/**
* This file is part of Batflat ~ the lightweight, fast and easy CMS
*
* @author Paweł Klockiewicz <klockiewicz@sruu.pl>
* @author Wojciech Król <krol@sruu.pl>
* @copyright 2017 Paweł Klockiewicz, Wojciech Król <Sruu.pl>
* @license https://batflat.org/license
* @link https://batflat.org
*/
namespace Inc\Core;
/**
* Admin class for administration panel
*/
abstract class AdminModule extends BaseModule
{
/**
* Module navigation
*
* @return array
*/
public function navigation()
{
return [];
}
}