String Cutting Helper in Zend Framework

It's the string cutting helper which deal with both UTF8 and others encodings. Also it remove html tags by default. [codesyntax lang="php" lines="no"] /** * Takes a string and optionally a maximum len… Continue reading
Posted in Zend Framework| Tagged , | Leave a comment

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