随笔分类 - Yii Framework
摘要:Components的方法引入以及定义:在config.php文件里面’components’=>array(’xyz’=>array(’class’=>’ext.xyz.XyzClass’,’property1’=>’value1&rsquo...
阅读全文
摘要:在helper的extension里面,所有的方法只能是静态方法,就好像是全局方法一样,它的类名只是作为它的命名空间
阅读全文
摘要:假设使用的model名字为CommentModel里面Public function rules(){Return array(......Array('verifyCode', 'captcha', 'on'=>'insert', 'allowEmpty'=>!Yii::app()->user->isGuest || !extension_loaded('gd')),);...
阅读全文
摘要:[代码]
阅读全文
摘要:创建application component继承IApplicationComponent接口,或者继承CApplicationComponent类,一定要覆盖IApplicationComponent::init()这个方法,因为component的实例化的时候要做一些准备工作的。创建behavior继承IBehavior接口,或者继承CBehavior类,如果是为CModel或者CActiv...
阅读全文
摘要:在main.php 里面配置return array(’theme’=>’basic’,......);要使用theme里面的资源的话,比如说images, js, css, 应该这样, Yii::app()->theme->baseUrl.”/images/FileName.gif”
阅读全文