This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $resource = Mage::getSingleton('core/resource'); | |
| $adapter = $resource->getConnection('core_write'); | |
| $select = $adapter->select(); | |
| $select->setPart( | |
| Zend_Db_Select::COLUMNS, array( | |
| array( | |
| null, | |
| new Zend_Db_Expr('NOW()'), | |
| 'test' | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| Ext.define('HatimeriaAdmin.cms.CmsPanel', { | |
| extend: 'Hatimeria.core.grid.BaseGrid', | |
| requires: [ | |
| 'HatimeriaAdmin.cms.store.CmsStore', | |
| 'HatimeriaAdmin.cms.window.CmsWindow' | |
| ], | |
| transNS: 'cms', | |
| translateAll: true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The new git-scm.com site includes man pages designed for pleasant viewing in a web browser: | |
| # | |
| # http://git-scm.com/docs | |
| # | |
| # The commands below can be used to configure git to open these pages when | |
| # using `git help -w <command>' from the command line. Just enter the config | |
| # commands in your shell to modify your ~/.gitconfig file. | |
| # Create a new browser command and configure help -w to use it. | |
| git config --global browser.gitscm.cmd "/bin/sh -c 'open http://git-scm.com/docs/\$(basename \$1 .html)' --" |