. * * PHP version 5 * @copyright Leo Feyer 2005-2012 * @author Leo Feyer * @package System * @license LGPL * @filesource */ /** * Interface listable * * @copyright Leo Feyer 2005-2012 * @author Leo Feyer * @package Controller */ interface listable { public function delete(); public function show(); public function showAll(); public function undo(); } /** * Interface editable * * @copyright Leo Feyer 2005-2012 * @author Leo Feyer * @package Controller */ interface editable { public function create(); public function cut(); public function copy(); public function move(); public function edit(); } /** * Interface executable * * @copyright Leo Feyer 2005-2012 * @author Leo Feyer * @package Controller */ interface executable { public function run(); public function isActive(); } /** * Interface uploadable * * @copyright Leo Feyer 2005-2012 * @author Leo Feyer * @package Controller */ interface uploadable {} ?>