Hello,
Download Link
----------------------------
https://sourceforge.net/projects/unusframework/
Unus is a PHP framework that uses the Zend Framework as a library to create a rapid php development application, which aims to developers complete control over their applications.
Unus comes packed with features that are simple to use, but very powerful to start the list this is brief and only what is used in the Beta
Unus Core - The heart of the framework and provides a link for interaction for all sections of an application from the Controller, Models, Views and Plugins.
Unus Session - A advanced session handling system based on namespacing that gives developers the ability to store concurrent session information on the filesystem; tightening security given the user no access to their session information.
Unus User - User system that is built barebone to provide a structure for more advanced functionality based on developers needs;
Unus View - A intelligent view system that uses a theme based architecture
Unus Plugins - Plugin system which can dispatches plugins to modify/perform logic within any section of a application
Unus Model - A barebone database model that extends Zend_Db that allows developers to intelligently load database information and handle it / pass it to plugins, controllers or views
Unus PHP Framework
Moderator: General Moderators
Re: Unus PHP Framework
Can you tell me a little how this is accomplished?nwhiting wrote:(...) to create a rapid php development application, which aims to developers complete control
Re: Unus PHP Framework
In simple terms overloading properties to a registry for access throughout the entire framework using optimized intelligent logic
Example
Example
Code: Select all
// Unus_User_Controller extended from Unus_Action
$this->agreeTerms = $postData['terms'];
Unus::dispatchEvent('user_submit_terms');
// Terms Observer extending from Unus_Event_Observer
// has no communication with the User_Controller and doesnt know it exists
if ($this->agreeTerms == true) {
echo 'We agree';
}
// But it knows that the property agreeTerms has been set somewhere within the application and can be modified/used/destroyed/overwritten
// This works with all areas of the framework Models, Controllers, View, Plugins (Observers), Helpers
Re: Unus PHP Framework
I like symfony because it creates database tables and CRUD objects from simple yaml files. Does your framework implement anything similar?
Re: Unus PHP Framework
No it does not,
If this was a highly requested feature then it would be something to implement.
Unus is set to provide a combination of more complex design patterns for developing applications into a simple to use framework, as it is right now it focuses more on the logic handling rather than the model, as I said if this is something that becomes high-demand than it can be implemented, but as of now it does not.
If this was a highly requested feature then it would be something to implement.
Unus is set to provide a combination of more complex design patterns for developing applications into a simple to use framework, as it is right now it focuses more on the logic handling rather than the model, as I said if this is something that becomes high-demand than it can be implemented, but as of now it does not.