meta/app/modules/meta/controllers/section.php

43 lines
621 B
PHP

<?php
/**
* meta
*
* Hierarchial data tool
*
* @package meta
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/meta
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* Section Controller
*/
class section extends meta\controller {
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
}
public function index()
{
}
/**
* Adds a new section to the current category
*/
public function add()
{
}
}
// End of section.php