ritaco/tools
Composer 安装命令:
composer require ritaco/tools
包简介
some library for CakePHP by used in RitaCo Projects.
README 文档
README
some library for CakePHP by used in RitaCo Projects
for CakePHP 2.6
Helpers :
- RitaHtml :
install :
<?php
class AppController extend Controller {
public $helpers = array(
'Html' => array(
'className' => 'RitaTools.RitaHtml'
)
);
}
####Html::link() :
$this->Html->link(
'Rita',
array('plugin' => 'Blog', 'controller' => 'Posts', 'action' => 'add'),
array('onActive' => [true|'full' or 'inline'])
);
FULL:
| onActive | url | html |
|---|---|---|
| full | /blog/posts/add | < a href="/posts/add" class="activeLink">Rita < / a> |
| full | /blog , /blog/posts | < a href="/posts/add" >Rita < / a> |
$this->Html->link(
'Rita',
'/blog',
array('onActive' => [true|'full' or 'inline'])
);
inline:
| onActive | url | html |
|---|---|---|
| inline | /blog/posts/add | < a href="/posts/add" class="activeLink inlineActive">Rita < / a> |
| inline | /blog , /blog/posts | < a href="/posts/add" class="activeLink inlineActive" >Rita < / a> |
统计信息
- 总下载量: 37
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-12-11