Custom Url Helper for Zend View

[codesyntax lang="php"] /** * url helper * * @author kim */ class App_View_Helper_L extends Zend_View_Helper_Url { /** * the current module */ static $currentModule = null; /** * Generate the link for… Continue reading
Posted in Zend Framework| Tagged , | Leave a comment

CSS Skills

1. CSS Reset http://meyerweb.com/eric/tools/css/reset/index.html http://meyerweb.com/eric/tools/css/reset/reset.css 2. CSS Hack [codesyntax lang="css" lines="no" container="pre" tab_width="4"] .test {… Continue reading
Posted in CSS| Tagged | Leave a comment

Simple Wrapper of Zend Controller

My simple wrapper of Zend Controller. It has 5 features including getParam, redirector, json and flash message. [codesyntax lang="php" lines="no"] /** * class App_Controller_Abstract * * @author kim *… Continue reading
Posted in Zend Framework| Tagged , | Leave a comment