38d397043e
Signed-off-by: Michael Tänzer <neo@nhng.de>
17 lines
260 B
PHP
17 lines
260 B
PHP
<?php
|
|
/**
|
|
* @author Michael Tänzer
|
|
*/
|
|
|
|
class AddPointsController extends Zend_Controller_Action
|
|
{
|
|
public function init()
|
|
{
|
|
/* Initialize action controller here */
|
|
}
|
|
|
|
public function indexAction()
|
|
{
|
|
/* TODO */
|
|
}
|
|
}
|