| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- EN-Revision: 24249 -->
- <!-- Reviewed: no -->
- <sect1 id="zend.tool.project.providers">
- <title>Project Provider für Zend_Tool</title>
- <para>
- Anbei ist eine Tabelle aller Provider die mit <classname>Zend_Tool_Project</classname>
- ausgeliefert werden.
- </para>
- <table id="zend.tool.project.project-provider">
- <title>Optionen des Project Providers</title>
- <tgroup cols="4">
- <thead>
- <row>
- <entry>Provider Name</entry>
- <entry>Vorhandene Aktionen</entry>
- <entry>Parameter</entry>
- <entry><acronym>CLI</acronym> Verwendung</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>Controller</entry>
- <entry>Create</entry>
- <entry>create - [name, indexActionIncluded=true]</entry>
- <entry><command>zf create controller foo</command></entry>
- </row>
- <row>
- <entry>Action</entry>
- <entry>Create</entry>
- <entry>create - [name, controllerName=index, viewIncluded=true]</entry>
- <entry>
- <command>zf create action bar foo</command> (oder
- <command>zf create action --name bar --controlller-name=foo</command>)
- </entry>
- </row>
- <row>
- <entry>Controller</entry>
- <entry>Create</entry>
- <entry>create - [name, indexActionIncluded=true]</entry>
- <entry><command>zf create controller foo</command></entry>
- </row>
- <row>
- <entry>Profile</entry>
- <entry>Show</entry>
- <entry>show - []</entry>
- <entry><command>zf show profile</command></entry>
- </row>
- <row>
- <entry>View</entry>
- <entry>Create</entry>
- <entry>create - [controllerName,actionNameOrSimpleName]</entry>
- <entry>
- <command>zf create view foo bar</command> (oder
- <command>zf create view -c foo -a bar</command>)
- </entry>
- </row>
- <row>
- <entry>Test</entry>
- <entry>Create Enable Disable</entry>
- <entry>create - [libraryClassName]</entry>
- <entry>
- <command>zf create test My_Foo_Baz</command>
- <command>zf disable test</command>
- <command>zf enable test</command>
- </entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- </sect1>
|