Created
April 21, 2011 11:20
-
-
Save junichi11/934219 to your computer and use it in GitHub Desktop.
CakePHP Helper Code Completion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* CakePHP Helper Code Completion | |
* @author junichi11 | |
* | |
* install NetBeans 7.0 && cakephp-netbeans plugin | |
* http://netbeans.org | |
* https://github.com/evilbloodydemon/cakephp-netbeans/tree/autocomplete | |
* /path/to/yourproject/nbproject/cake_helper_code_completion.php | |
* | |
* e.g. | |
* [foo.ctp file] | |
* $this->H(PRESS Ctrl + Space) | |
* => $this->Html->li(Press Ctrl + Space) | |
* | |
* ============================================== | |
* CakePHP Core Helpers | |
* ============================================== | |
* @property AjaxHelper $Ajax | |
* @property Javascript $Javascript | |
* @property CacheHelper $Cache | |
* @property FormHelper $Form | |
* @property HtmlHelper $Html | |
* @property JsHelper $Js | |
* @property NumberHelper $Number | |
* @property PaginatorHelper $Paginator | |
* @property RssHelper $Rss | |
* @property SessionHelper $Session | |
* @property TextHelper $Text | |
* @property TimeHelper $Time | |
* @property XmlHelper $Xml | |
* @property | |
* | |
* ============================================== | |
* Add Other Helpers | |
* ============================================== | |
* | |
*/ | |
class View{ | |
} | |
/** | |
* ============================================== | |
* CakePHP Core Helpers | |
* ============================================== | |
* @property AjaxHelper $Ajax | |
* @property Javascript $Javascript | |
* @property CacheHelper $Cache | |
* @property FormHelper $Form | |
* @property HtmlHelper $Html | |
* @property JsHelper $Js | |
* @property NumberHelper $Number | |
* @property PaginatorHelper $Paginator | |
* @property RssHelper $Rss | |
* @property SessionHelper $Session | |
* @property TextHelper $Text | |
* @property TimeHelper $Time | |
* @property XmlHelper $Xml | |
* @property | |
* | |
* ============================================== | |
* Add Other Helpers | |
* ============================================== | |
*/ | |
class AppHelper{ | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment