[ZF-10089] Zend_Log
[zend.git] / documentation / manual / en / module_specs / Zend_Tool_Project-Providers.xml
blob7be4bfac7920a71a5c95d5fcb153188be283aa57
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Reviewed: no -->
3 <sect1 id="zend.tool.project.providers">
4     <title>Zend_Tool Project Providers</title>
6     <para>
7         Below is a table of all of the providers shipped with
8         <classname>Zend_Tool_Project</classname>.
9     </para>
11     <table id="zend.tool.project.project-provider">
12         <title>Project Provider Options</title>
14         <tgroup cols="4">
15             <thead>
16                 <row>
17                     <entry>Provider Name</entry>
18                     <entry>Available Actions</entry>
19                     <entry>Parameters</entry>
20                     <entry><acronym>CLI</acronym> Usage</entry>
21                 </row>
22             </thead>
24             <tbody>
25                 <row>
26                     <entry>Controller</entry>
27                     <entry>Create</entry>
28                     <entry>create - [name, indexActionIncluded=true]</entry>
29                     <entry><command>zf create controller foo</command></entry>
30                 </row>
32                 <row>
33                     <entry>Action</entry>
34                     <entry>Create</entry>
35                     <entry>create - [name, controllerName=index, viewIncluded=true]</entry>
37                     <entry>
38                         <command>zf create action bar foo</command>
39                         (or <command>zf create action --name bar --controlller-name=foo</command>)
40                     </entry>
41                 </row>
43                 <row>
44                     <entry>Controller</entry>
45                     <entry>Create</entry>
46                     <entry>create - [name, indexActionIncluded=true]</entry>
47                     <entry><command>zf create controller foo</command></entry>
48                 </row>
50                 <row>
51                     <entry>Profile</entry>
52                     <entry>Show</entry>
53                     <entry>show - []</entry>
54                     <entry><command>zf show profile</command></entry>
55                 </row>
57                 <row>
58                     <entry>View</entry>
59                     <entry>Create</entry>
60                     <entry>create - [controllerName,actionNameOrSimpleName]</entry>
62                     <entry>
63                         <command>zf create view foo bar</command>
64                         (or <command>zf create view -c foo -a bar</command>)
65                     </entry>
66                 </row>
68                 <row>
69                     <entry>Test</entry>
70                     <entry>Create / Enable / Disable</entry>
71                     <entry>create - [libraryClassName]</entry>
73                     <entry>
74                         <command>zf create test My_Foo_Baz</command> /
75                         <command>zf disable test</command> /
76                         <command>zf enable test</command>
77                     </entry>
78                 </row>
79             </tbody>
80         </tgroup>
81     </table>
82 </sect1>