cakephp-plugin tools
some library for CakePHP by used in RitaCo Projects.
ritaco/tools
some library for CakePHP by used in RitaCo Projects.
- Sunday, May 24, 2015
- by zoghal
- Repository
- 1 Watchers
- 1 Stars
- 37 Installations
- PHP
- 1 Dependents
- 0 Suggesters
- 1 Forks
- 0 Open issues
- 2 Versions
- 0 % Grown
some library for CakePHP by used in RitaCo Projects, (*1)
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:, (*2)
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:, (*3)
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> |