rafaelsilva.net
Linguagens | Rafael Silva
https://rafaelsilva.net/categorias/categorias/linguagens
19 de Novembro de 2013. Sobre motores de templates. O Drupal nunca foi tido como um CMS fácil de se trabalhar. Para quem está acostumado com o Wordpress ou Joomla! Ele às vezes é muito estranho (verdade seja dita, isso acontecia até o Drupal 6, desde o 7 isso melhorou muito). No entanto para nós, desenvolvedores ele sempre teve um dos códigos mais limpos, seguros e consistentes no mercado de CMSs Open Source. Com o lançamento iminente do Drupal 8 muita gente está ansiosa pela sua integração com o. E gost...
rafaelsilva.net
Drupal | Rafael Silva
https://rafaelsilva.net/categorias/drupal
22 de Dezembro de 2014. Vai chegando o fim do ano, e todo mundo começa a fazer a sua retrospectiva. Eu não vou quebrar esse padrão e farei também a minha. Sobre o primeiro ponto, a falta de projetos Drupal, boa parte disso é culpa minha. Eu parei de investir tempo ajudando na comunidade, e também tenho sempre rejeitado novos projetos. Isso, em grande parte, se deve ao fato de eu estar trabalhando com Drupal há 10 anos! E a sua retrospectiva? 05 de Março de 2014. Case: Site do Restaurante Madero. Que tem ...
molotovbliss.com
Development
http://molotovbliss.com/category/web-dev
Rules of Magento Club. Debugging tips & tricks with Magento Commerce. Getting Started with Magento. Selecting 30 days or older entries using MySQL DateTime field. Favorite Demos on YouTube in a playlist. Best 4k Demo EVER! Old Kosmic (KFMF) Demos. Combine H.264 MP4 Files and Add Audio via MP4Box and FFMPEG. New kid on the PHP E-Commerce block Sellvana. Has been released as a private beta. I was fortunate enough to get access and take her for a test drive. Is easy to use, and learn.”. Buckyball is the und...
getxapp.com
Xapp™ Framework — UI Level
http://www.getxapp.com/docs/setup-ui-level
The User Interface layer combines the browser based technologies such as javascript, css, images and html/xhtml. The xhtml content can be driven by a dynamic template engine such as PHPTal. 1 Create your Xapp config file. Once installed, create your config file in: DOCUMENT ROOT /apps/includes/xapp.config.php. 2Create your basic web site class. 3Create a simple theme. Next create your default page view. Create our view file. Div Today is ${today} /div. 4Test out your new website.
rafaelsilva.net
Template | Rafael Silva
https://rafaelsilva.net/categorias/categorias/template
19 de Novembro de 2013. Sobre motores de templates. O Drupal nunca foi tido como um CMS fácil de se trabalhar. Para quem está acostumado com o Wordpress ou Joomla! Ele às vezes é muito estranho (verdade seja dita, isso acontecia até o Drupal 6, desde o 7 isso melhorou muito). No entanto para nós, desenvolvedores ele sempre teve um dos códigos mais limpos, seguros e consistentes no mercado de CMSs Open Source. Com o lançamento iminente do Drupal 8 muita gente está ansiosa pela sua integração com o. E gost...
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...