Controllers - softhightech/Reeeh GitHub Wiki
If you need to add some pages or modules.
For example we need to create a cities, countries manager, create a folder called "general" in includes/plugins/ and inside this folder create two folders cities and countruies, each fold must contain to files data.php & list.php
Then go to this file : includes/views.php and search for "$modules_parrents" then add the parent folder in our case general and sub folders example :
$modules_parrents = array(
'general'=>array('cities','countries')
);