add IntroductionAgent

This commit is contained in:
coderkun 2014-01-17 03:28:18 +01:00
commit d205864dd4
3 changed files with 84 additions and 0 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 an introduction page.
*
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
*/
class IntroductionAgent extends \nre\agents\IntermediateAgent
{
/**
* Action: index.
*/
public function index()
{
}
}
?>

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\controllers;
/**
* Controller of the Agent to show an introduction page.
*
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
*/
class IntroductionController extends \hhu\z\Controller
{
/**
* Action: index.
*/
public function index()
{
}
}
?>

View file

@ -0,0 +1,14 @@
<ul>
<li itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Oliver Hanraths</span> &lt;<span itemprop="email">oliver.hanraths@uni-duesseldorf.de</span>&gt;
</li>
<li itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Daniel Miskovic</span> &lt;<span itemprop="email">daniel.miskovic@uni-duesseldorf.de</span>&gt;
</li>
<li itemscope itemtype="http://schema.org/Person">
Leitung: <span itemprop="name">Kathrin Knautz</span>, <span itemprop="honorificSuffix">B.A., M.A.</span> &lt;<span itemprop="email">kathrin.knautz@uni-duesseldorf.de</span>&gt;
</li>
</ul>
<p itemscope itemtype="http://schema.org/CollegeOrUniversity">
<a itemprop="name" href="http://www.uni-duesseldorf.de">Heinrich-Heine-Universität Düsseldorf</a>
</p>