08 2012 档案
Zend Framework的基本配置
摘要:Zend Framework的基本配置(标准配置以及架构)
阅读全文
zend framwork与DB以及model
摘要:Zend Framework DB的连接 Model与数据库的操作(基于OOP) 添加,删除,修改,查询数据 Model与数据库的操作(基于php-mysql,或者是mysqli)
阅读全文
zend Famework与view
摘要:Zend Framework与view中的总结 Web frontend元素的放置位置(image,css,js) 对frontend 单个theme的位置存放 对frontend website 多个theme的更换 多个module,所相对应的image,css,js放置 Web Frontend引入方式 1. 基于view helper的引入 2. CSS 与 JS文件在HT...
阅读全文
zend framework与config.ini
摘要:config.ini 无需对PHP进行编码,即可实现灵活的配置 phpSettings.display_startup_errors = 1phpSettings.display_errors = 1 bootstrap.path = APPLICATION_PATH"/Bootstrap.php"bootstrap.class = "Bootstrap" resources.frontCo...
阅读全文
认真总结Zend Framework
摘要:Zend Framework 的总结:快速配置zend Framework基于配置文件的配置基于init方法的配置
阅读全文
magento与theme
摘要:magento的开发原则: 1.不要修改magento的Core. 2.对于需要添加的功能,如果使用theme即可以解决的问题,即修改theme即可。如果必须做成插件才可以完成的,则考虑使用插件 3. 规范的书写代码 MAGENTO与theme的开发要点 添加以及移除javascript以及CSS 静态块的使用 setting template 新页面的布局 常用的layout...
阅读全文
magento
摘要:magento需要总结的点很多,个人感觉可以从以下的几个方面考虑: magento的基本使用 magento的模板 magento的体系结构 magento的插件开发 magento的基本使用 Global-Website-Store methodology Managing products the customer-focused way Flat rate shipping Tabl...
阅读全文
wordpress custom form
摘要:wordpress custom formA last option is to write a custom function (in yourfunctions.phpfile) and hook that function to theget_search_formaction hook.function sanofi_search_form( $form ) { $form = '<form role="search" method="get" id="searchform" action="'
阅读全文
CSS中对font-face
摘要:CSS中对font-facelast-child 等 一系列的IE支持并不理想的解决
阅读全文
wordpress中的feed
摘要:$rss = fetch_feed($rss_feed);//display the RSS feed wp_widget_rss_output( array( 'url' => $rss_feed, 'title' => $title, 'items' => $rss_items, 'show_summary' => 1 ) );http://www.wprecipes.com/wordpress-tip-fetch-and-display-rss-feeds
阅读全文
wordpress 自定义编辑器
摘要:wordpress 自定义编辑器:在编辑器中添加 HTML标签,或者让用户可以通过点击编辑器中的按钮来生成shortcodeshortcode相关:http://brettterpstra.com/adding-a-tinymce-button/http://codex.wordpress.org/TinyMCE_Custom_Buttonshttp://alisothegeek.com/2011/05/tinymce-styles-dropdown-wordpress-visual-editor/
阅读全文
jquery 的live事件机制总结
摘要:jquery 的live事件机制总结
阅读全文