Zend_Tool_Project-Providers.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- EN-Revision: 24249 -->
  3. <!-- Reviewed: no -->
  4. <sect1 id="zend.tool.project.providers">
  5. <title>Project Provider für Zend_Tool</title>
  6. <para>
  7. Anbei ist eine Tabelle aller Provider die mit <classname>Zend_Tool_Project</classname>
  8. ausgeliefert werden.
  9. </para>
  10. <table id="zend.tool.project.project-provider">
  11. <title>Optionen des Project Providers</title>
  12. <tgroup cols="4">
  13. <thead>
  14. <row>
  15. <entry>Provider Name</entry>
  16. <entry>Vorhandene Aktionen</entry>
  17. <entry>Parameter</entry>
  18. <entry><acronym>CLI</acronym> Verwendung</entry>
  19. </row>
  20. </thead>
  21. <tbody>
  22. <row>
  23. <entry>Controller</entry>
  24. <entry>Create</entry>
  25. <entry>create - [name, indexActionIncluded=true]</entry>
  26. <entry><command>zf create controller foo</command></entry>
  27. </row>
  28. <row>
  29. <entry>Action</entry>
  30. <entry>Create</entry>
  31. <entry>create - [name, controllerName=index, viewIncluded=true]</entry>
  32. <entry>
  33. <command>zf create action bar foo</command> (oder
  34. <command>zf create action --name bar --controlller-name=foo</command>)
  35. </entry>
  36. </row>
  37. <row>
  38. <entry>Controller</entry>
  39. <entry>Create</entry>
  40. <entry>create - [name, indexActionIncluded=true]</entry>
  41. <entry><command>zf create controller foo</command></entry>
  42. </row>
  43. <row>
  44. <entry>Profile</entry>
  45. <entry>Show</entry>
  46. <entry>show - []</entry>
  47. <entry><command>zf show profile</command></entry>
  48. </row>
  49. <row>
  50. <entry>View</entry>
  51. <entry>Create</entry>
  52. <entry>create - [controllerName,actionNameOrSimpleName]</entry>
  53. <entry>
  54. <command>zf create view foo bar</command> (oder
  55. <command>zf create view -c foo -a bar</command>)
  56. </entry>
  57. </row>
  58. <row>
  59. <entry>Test</entry>
  60. <entry>Create Enable Disable</entry>
  61. <entry>create - [libraryClassName]</entry>
  62. <entry>
  63. <command>zf create test My_Foo_Baz</command>
  64. <command>zf disable test</command>
  65. <command>zf enable test</command>
  66. </entry>
  67. </row>
  68. </tbody>
  69. </tgroup>
  70. </table>
  71. </sect1>