implement rudimental form for creating Quests and Questgroups

This commit is contained in:
coderkun 2014-04-17 11:11:29 +02:00
commit bfe9155fe4
7 changed files with 271 additions and 7 deletions

View file

@ -34,6 +34,21 @@
/**
* Get all registered Questtypes.
*
* @return array List of registered Questtypes
*/
public function getQuesttypes()
{
return $this->db->query(
'SELECT id, title, url, classname '.
'FROM questtypes '.
'ORDER BY title ASC'
);
}
/**
* Get a Questtype by its ID
*