implement managing of Queststopics

This commit is contained in:
coderkun 2014-05-16 00:22:24 +02:00
commit cd9f11cf0a
7 changed files with 169 additions and 8 deletions

View file

@ -235,6 +235,7 @@
array('^achievements/([^/]+)/?$', 'achievements/index/$1', true),
array('^library/([^/]+)/?$', 'library/index/$1', true),
array('^library/([^/]+)/([^/]+)/?$', 'library/topic/$1/$2', true),
array('^library/([^/]+)/([^/]+)/manage/?$', 'library/managetopic/$1/$2', true),
array('^media/(.*)$', 'media/$1?layout=binary', false),
array('^uploads/(.*)$', 'uploads/$1?layout=binary', false)
);
@ -271,7 +272,8 @@
array('^charactergroupsquests/quest/(.*)$', 'charactergroupsquests/$1', true),
array('^charactergroupsquests/(edit|delete|manage)/([^/]+)/([^/]+)/([^/]+)$', 'charactergroupsquests/$2/$3/$4/$1', true),
array('^achievements/index/(.*)$', 'achievements/$1', true),
array('^library/(index|topic)/(.*)$', 'library/$2', true)
array('^library/(index|topic)/(.*)$', 'library/$2', true),
array('^library/managetopic/(.*)$', 'library/$1/manage', true)
);