Skip to content
This repository has been archived by the owner on Dec 4, 2019. It is now read-only.

Commit

Permalink
#796: Create admin base controller stub.
Browse files Browse the repository at this point in the history
  • Loading branch information
franzliedke committed Jan 16, 2013
1 parent 83fafec commit 9f13b1a
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
33 changes: 33 additions & 0 deletions src/FluxBB/Controllers/Admin/Base.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?php
/**
* FluxBB - fast, light, user-friendly PHP forum software
* Copyright (C) 2008-2012 FluxBB.org
* based on code by Rickard Andersson copyright (C) 2002-2008 PunBB
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public license for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @category FluxBB
* @package Core
* @copyright Copyright (c) 2008-2012 FluxBB (http://fluxbb.org)
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License
*/

namespace FluxBB\Controllers\Admin;

use FluxBB\Controllers\Base as Controller;

class Base extends Controller
{

}
1 change: 0 additions & 1 deletion src/FluxBB/Controllers/Admin/Dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

namespace FluxBB\Controllers\Admin;

use FluxBB\Controllers\Base;
use View;

class Dashboard extends Base
Expand Down

0 comments on commit 9f13b1a

Please sign in to comment.