ritaco / tools
some library for CakePHP by used in RitaCo Projects.
Installs: 37
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=5.2
- cakephp/cakephp: 2.5.*
This package is not auto-updated.
Last update: 2025-03-29 20:03:02 UTC
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> |