Page 1 of 1

OrangeHRM Framework

Posted: Tue Jul 28, 2020 3:54 pm
by Louknows
I've downloaded the code of OrangeHRM and I want to add some functionality into it to satisfy business needs. I checked the code, and it seems like it has its own framework. Is there a documentation on the workflow on how the controller, views are being selected per web request?

Re: OrangeHRM Framework

Posted: Wed Jul 29, 2020 10:09 am
by rajitha
Hi,
It's actually Symfony 1 framework. https://github.com/FriendsOfSymfony1/symfony1
E.g. Let say you want to edit https://<instance-relative-path>/admin/viewSystemUsers
Search viewSystemUsersAction.class.php (controller), viewSystemUsersSuccess.php (view)

Thanks