phpburn.com
loadView() | PhpBURN - The Kick-Ass PHP Framework
http://www.phpburn.com/documentation/controller/loadview
LoadView($view, $data, $toVar = false). Loads a view, process data and print/store it. View is the complete folder/subfolder/file reference with some particularities: you don’t have to say the extension because it is defined by your configuration, if you want to change you view system tomorrow you can just by changing configs, not the application. That will say to loadView() that your view should not be printed as soon you call it but instead you will store it into a variable:. Your View (hello.php).
phpburn.com
join() | PhpBURN - The Kick-Ass PHP Framework
http://www.phpburn.com/documentation/orm/join
Join($tableLeft, $fieldLeft = null, $fieldRight = null, $operator = '=', $joinType = 'JOIN', $tableRight = null). Join Function inserts a JOIN clause in the get()/find() method and than returns the join result in a array into the object. Ex $obj- join(‘users’);. Obj- users- name and $obj- users- login (but only as object not a PhpBURN model if you want methods in user use getLink(). Name of the table that will receive the JOIN. The field form left side of the join ON statement. MySQL Reverse Engineer ...
phpburn.com
getMap() | PhpBURN - The Kick-Ass PHP Framework
http://www.phpburn.com/documentation/orm/getmap
Auxiliar Method : Gets the Map Object for the model. This method returns the PhpBURN Map object from a model, mostly used in mapping() method into the models ( see Tutorials at PhpBURN site) but can be called anytime for use some PhpBURN Map methods or infos ( See PhpDOC at Documentation in PhpBURN site ). The usage of this method is:. Model = new Model(); $model- getMap(). Using Multiple DBMS (databases) as One. MySQL Reverse Engineer – Beta. PhpBURN vs Doctrine – Model Construction. Klederson Bueno - A...
phpburn.com
ORM | PhpBURN - The Kick-Ass PHP Framework
http://www.phpburn.com/documentation/orm
Best and Faster PHP's Object Relational Mapping Framework. Learn how to use PhpBURN ORM, construct fast applications, connec to to multiple databases, multiples hosts and multiples drivers. Change your database driver in minutes without changing all your application code and more, much more. The ORM in PhpBURN is defined by the usage of PhpBURN Core as a extendable asbtract class. By definition in Wikipedia:. How many users you know that knows how to work in a Oracle enviroment (really know)? PhpBURN vs ...
phpburn.com
begin() | PhpBURN - The Kick-Ass PHP Framework
http://www.phpburn.com/documentation/orm/begin
This method begins a database transaction, it’s only needed by databases that REQUIRE begin() transaction ( Oracle for example ). It’s mostly used with a commit() method. The usage of this method is:. Model = new Model(); $model- begin(); $model- find(); $model- commit();. Using Multiple DBMS (databases) as One. MySQL Reverse Engineer – Beta. PhpBURN vs Doctrine – Setting, Retreiving, Finding and More. PhpBURN vs Doctrine – Model Construction. Adding generate.php to be compatible with Windows. Using Mult...
phpburn.com
loadRelativeView() | PhpBURN - The Kick-Ass PHP Framework
http://www.phpburn.com/documentation/controller/loadrelativeview
LoadRelativeView($action, $toVar = false). Using Multiple DBMS (databases) as One. MySQL Reverse Engineer – Beta. PhpBURN vs Doctrine – Setting, Retreiving, Finding and More. PhpBURN vs Doctrine – Model Construction. Adding generate.php to be compatible with Windows. Adding generate.php to be compatible with Windows. Adding generate.php to be compatible with Windows. Merge branch 'master' of github.com:PhpBURN/phpburn. Adding generate.php to be compatible with Windows. Phpburn] http:/ bit.ly/ce7c1o.
phpburn.com
commit() | PhpBURN - The Kick-Ass PHP Framework
http://www.phpburn.com/documentation/orm/commit
This method commit a database transaction, it’s only needed by databases that REQUIRE commit() transaction ( Oracle for example ). It’s mostly used with a begin() method. The usage of this method is:. Model = new Model(); $model- begin(); $model- find(); $model- commit();. Using Multiple DBMS (databases) as One. MySQL Reverse Engineer – Beta. PhpBURN vs Doctrine – Setting, Retreiving, Finding and More. PhpBURN vs Doctrine – Model Construction. Adding generate.php to be compatible with Windows. Using Mult...
phpburn.com
getDialect() | PhpBURN - The Kick-Ass PHP Framework
http://www.phpburn.com/documentation/orm/getdialect
Auxiliar Method : Gets the Dialect Object for the model. This method returns the PhpBURN Dialect object from a modelcan be called anytime for use some PhpBURN Dialect methods or infos ( See PhpDOC at Documentation in PhpBURN site ). The usage of this method is:. Model = new Model(); $model- getDialect(). Using Multiple DBMS (databases) as One. MySQL Reverse Engineer – Beta. PhpBURN vs Doctrine – Setting, Retreiving, Finding and More. PhpBURN vs Doctrine – Model Construction. Klederson Bueno - Added PHPTA...
phpburn.com
Documentation | PhpBURN - The Kick-Ass PHP Framework
http://www.phpburn.com/documentation
Let it BURN - PhpBURN Documentation. Here is All About PhpBURN 😉. You can find here helpful information about the framework usage, methods, functions, and all stuff in PhpBURN MVC Framework. It’s good to remind if you are looking for tutorials or howto you probably will like to see Tutorial area in this site. Using Multiple DBMS (databases) as One. MySQL Reverse Engineer – Beta. PhpBURN vs Doctrine – Setting, Retreiving, Finding and More. PhpBURN vs Doctrine – Model Construction. Klederson Bueno - Added...
phpburn.com
joinInner() | PhpBURN - The Kick-Ass PHP Framework
http://www.phpburn.com/documentation/orm/joininner
JoinInner($tableName, $fieldLeft = null, $fieldRight = null, $tableRight = null, $operator = '='). Equivalent to $this- join() but instead automaticaly puts a INNER JOIN into the JOIN string for more information see join(). Name of the table that will receive the JOIN. The field form left side of the join ON statement. Value or field on the right side of ON statement. When you want to use $fieldRight. As a table field you should specify this param with the right table to be attached to $fieldRight. Addin...