18 lines
260 B
PHP
18 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 */
|
||
|
}
|
||
|
}
|