Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: klederson/phpburn

Tags

stable-1.0.8

Toggle stable-1.0.8's commit message
A small implementation of Controllers routes so you can define better…

… dynamic methods using __call() PHP magic function

stable-1.0.7

Toggle stable-1.0.7's commit message
Minor fix PhpBURN intelisense so now even a empty raw model can be up…

…dated by just adding the PK(s) value(s) to it: ->id = 1; ->name = 'New Name'; ->save(); It will update the name based on id 1 as pk ( once id is defined as a PK of course )

beta-1.0.7

Toggle beta-1.0.7's commit message
Improved recursive toArray to use model itself for better compatibili…

…ty with changes

stable-1.0.6

Toggle stable-1.0.6's commit message
changing empty function comparation for isset in field value and rout…

…e param because zero value can be used and empty deny it

stable-1.0.5

Toggle stable-1.0.5's commit message
Added ->saveRelationship(); ->saveRelationship() - That means you now…

… can save a unique relationship without call ->save() (it does still work as aways but now with new features) - So now you can save only the relationships by calling ->saveRelationship() or a UNIQUE RELATIONSHIP by calling ->saveRelationship();

stable-1.0.4

Toggle stable-1.0.4's commit message
Identation

beta-1.0.5

Toggle beta-1.0.5's commit message
Identation

stable-1.0.3

Toggle stable-1.0.3's commit message
Merge branch 'master' into stable

b1.0.2

Toggle b1.0.2's commit message
Minor changes

b1.0.1

Toggle b1.0.1's commit message
MAJOR UPDATE: Added PhpBURN_ControllerConfig Auxiliar class it manage…

…s configurations for all Controllers.

MAJOR UPDATE: Added onCallActionBefore and onCallActionAfter in controllers so now is possible to define functions and structures before call an action, example:
PhpBURN_ControllerConfig::addOnCallActionBefore(
        'phpburn_onCallActionBeforeTest',

        function(, ) {
            var_dump(, );
        }
);
 and  are needed