add Stylesheet- and CssAgent and add it to HTML-layout

This commit is contained in:
coderkun 2014-01-17 02:37:08 +01:00
commit 168ebde8c8
9 changed files with 218 additions and 1 deletions

View file

@ -0,0 +1,35 @@
<?php
/**
* The Legend of Z
*
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
* @copyright 2014 Heinrich-Heine-Universität Düsseldorf
* @license http://www.gnu.org/licenses/gpl.html
* @link https://bitbucket.org/coderkun/the-legend-of-z
*/
namespace hhu\z\agents\intermediate;
/**
* Agent to show CSS-stylesheets.
*
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
*/
class CssAgent extends \nre\agents\IntermediateAgent
{
/**
* Action: index.
*/
public function index()
{
}
}
?>