Zend_Tool_Project-Providers.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- EN-Revision: 16653 -->
  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>
  24. Controller
  25. </entry>
  26. <entry>
  27. Create
  28. </entry>
  29. <entry>
  30. create - [name, indexActionIncluded=true]
  31. </entry>
  32. <entry>
  33. <command>zf create controller foo</command>
  34. </entry>
  35. </row>
  36. <row>
  37. <entry>
  38. Action
  39. </entry>
  40. <entry>
  41. Create
  42. </entry>
  43. <entry>
  44. create - [name, controllerName=index, viewIncluded=true]
  45. </entry>
  46. <entry>
  47. <command>zf create action bar foo</command> (oder
  48. <command>zf create action --name bar --controlller-name=foo</command>)
  49. </entry>
  50. </row>
  51. <row>
  52. <entry>
  53. Controller
  54. </entry>
  55. <entry>
  56. Create
  57. </entry>
  58. <entry>
  59. create - [name, indexActionIncluded=true]
  60. </entry>
  61. <entry>
  62. <command>zf create controller foo</command>
  63. </entry>
  64. </row>
  65. <row>
  66. <entry>
  67. Profile
  68. </entry>
  69. <entry>
  70. Show
  71. </entry>
  72. <entry>
  73. show - []
  74. </entry>
  75. <entry>
  76. <command>zf show profile</command>
  77. </entry>
  78. </row>
  79. <row>
  80. <entry>
  81. View
  82. </entry>
  83. <entry>
  84. Create
  85. </entry>
  86. <entry>
  87. create - [controllerName,actionNameOrSimpleName]
  88. </entry>
  89. <entry>
  90. <command>zf create view foo bar</command> (oder
  91. <command>zf create view -c foo -a bar</command>)
  92. </entry>
  93. </row>
  94. <row>
  95. <entry>
  96. Test
  97. </entry>
  98. <entry>
  99. Create
  100. Enable
  101. Disable
  102. </entry>
  103. <entry>
  104. create - [libraryClassName]
  105. </entry>
  106. <entry>
  107. <command>zf create test My_Foo_Baz</command>
  108. <command>zf disable test</command>
  109. <command>zf enable test</command>
  110. </entry>
  111. </row>
  112. </tbody>
  113. </tgroup>
  114. </table>
  115. </sect1>