mcurry / click
- Source
- Commits
- Network (3)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
unknown (author)
Thu Aug 13 08:18:00 -0700 2009
click /
| name | age | message | |
|---|---|---|---|
| |
README | Tue Jul 07 20:30:59 -0700 2009 | |
| |
click_app_controller.php | Sun Jun 28 17:46:04 -0700 2009 | |
| |
click_app_model.php | Sun Jun 28 17:46:04 -0700 2009 | |
| |
config/ | Fri Jun 26 19:10:27 -0700 2009 | |
| |
controllers/ | Thu Aug 13 08:18:00 -0700 2009 | |
| |
models/ | Sun Jun 28 17:46:04 -0700 2009 | |
| |
views/ | Sun Jun 28 17:46:04 -0700 2009 |
README
/* * Click Tracking CakePHP Plugin * Copyright (c) 2009 Matt Curry * www.PseudoCoder.com * http://github.com/mcurry/click * * @author Matt Curry <matt@pseudocoder.com> * @license MIT * */ /* Instructions */ 1. Run the SQL in /click/config/sql/clicks.sql to create the DB table. 2. Include the helper in your AppController/Controller: var $helpers = array('Click.click'); 3. Create your links using the helper (same syntax and options as $html->link()): echo $click->link('PseudoCoder', 'http://pseudocoder.com'); 4. To view the click information download the status plugin (http://github.com/mcurry/status). Once you have it setup add the click panels: Configure::write('Status.panels', array('Click.latest', 'Click.most')); Go to http://yourapp/status
