This plugin allows you to place a limit on the number of words a user may enter into a form input. If they paste in more than the limit, it trims the value to the number of words set by the limit option. While typing, it stops allowing input after the limit has been reached. An optional element (leftSelector) can be used to show a countdown with the number of words left.
This project is located on Github.
This CakePHP behavior allows you to track the changes of one model and mirror them onto one or many other models. Several options are available to make sure this doesn't slow down the end-user's experience. This project is located on Github.
This component allows your controllers to send Prowl notifications to your iPhone or iPod Touch. This is a modified version of Fenrick's ProwlPHP. This project is located on Github.
<?php
Configure::write('Prowl.apikey', '');
Configure::write('Prowl.providerkey', ''); // optional for whitelisted programs
Configure::write('Prowl.application', ''); // name of application
Configure::write('Prowl.priority', ''); // priority of message (-2 to 2)
Configure::write('Prowl.event', ''); // name of event
Configure::write('Prowl.logError', false); // (optional ability to log errors)
Configure::write('Prowl.verify', false); // (optional ability to verify upon initialization)
?><?php
class AppController extends Controller {
var $components = array('Prowl');
// ...
}
?><?php
$this->Prowl->push('short message you would like pushed');
// or you can override almost all the options set in bootstrap.php
$this->Prowl->push(array('description' => 'short message you would like pushed', 'application' => 'SpecialApp'));
?>