Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We are trying to create a new page in the Expression Engine administration area, ideally using a custom module or extension.

We need a method that EE with call before the header is sent to the browser and a method to display any output. This is generic and will have no specific function but the documentation on this is scarce.

For example in WordPress, I would add some custom actions to the init hook and call the 'add_menu_page' method in the functions.php file. One of the input variables of this method is a bespoke PHP file containing the output.

In short I need to know how to do the equivalent in EE2 as it is not as clearly documented as WordPress?

share|improve this question

migrated from webmasters.stackexchange.com Sep 11 '12 at 23:35

1 Answer

up vote 2 down vote accepted

We found the simplest solution was to use http://pkg.io/ to generate the basic extension classes for you, allowing any competent programmer to fill in the gaps to produce the user interface.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.