Zend Framework Assistant for Notepad++ Code
Status: Alpha
Brought to you by:
ronp001
| File | Date | Author | Commit |
|---|---|---|---|
| .objs | 2009-01-26 | ronp001 | [r2] v0.1 |
| 3rd_party_examples - unused in project | 2009-01-26 | ronp001 | [r1] Initial version. Needs some cleanups, but has ... |
| Notepad_plus_msgs.h | 2009-01-26 | ronp001 | [r1] Initial version. Needs some cleanups, but has ... |
| PluginInterface.h | 2009-01-26 | ronp001 | [r1] Initial version. Needs some cleanups, but has ... |
| README.txt | 2009-03-28 | ronp001 | [r4] v0.2 |
| Scintilla.h | 2009-01-26 | ronp001 | [r1] Initial version. Needs some cleanups, but has ... |
| ZfAssistant.cbp | 2009-04-09 | ronp001 | [r6] bugfix: would hang npp if trying to access boot... |
| ZfAssistant.cpp | 2009-04-09 | ronp001 | [r7] renamed version to 0.21 |
| ZfAssistant.dll | 2009-04-09 | ronp001 | [r7] renamed version to 0.21 |
| ZfAssistant.layout | 2009-04-09 | ronp001 | [r6] bugfix: would hang npp if trying to access boot... |
| license.txt | 2009-01-26 | ronp001 | [r3] documentation update |
| menuCmdID.h | 2009-01-26 | ronp001 | [r1] Initial version. Needs some cleanups, but has ... |
| workspace.workspace | 2009-01-26 | ronp001 | [r2] v0.1 |
ZfAssistant - a plugin for Notepad++
Written by: Ron Perry
License: GPL v2
This is a small plugin for Notepad++ (Unicode). It is intended to help PHP developers using Zend Framework MVC. Current functionality: assigns a shortcut key (Ctrl+F9) to toggle between an Action method on the Zend_Controller_Action and the relevant View script (phtml).
Installation
------------
Place zfassistant.dll in Notepad++ plugins directory.
IMPORTANT: Works only with Unicode version of Notepad++!
Usage
-----
Ctrl+F9: toggle between
.../views/scripts/<some-name>/<some-operation>.phtml
and
.../controllers/<someName>.php [ ==> cursor located within the function someOperationAction() ]
Ctrl+Alt+B: switch to "bootstrap.php"
attempts to locate bootstrap.php by assuming that the site is structured as follows:
<site root>
<public>
.htaccess
...
<application>
bootstrap.php
...
Version History
----------------
v0.2:
added Ctrl+Alt+B functionality
removed some unnecessary menu entries
v0.1:
initial version