Zend_Tool_Project-Providers.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <!-- EN-Revision: 16653 -->
  4. <sect1 id="zend.tool.project.providers">
  5. <title>Zend Toolプロジェクトプロバイダー</title>
  6. <para>
  7. 下記は<classname>Zend_Tool_Project</classname>とともに出荷されたプロバイダーすべての一覧です。
  8. </para>
  9. <table id="zend.tool.project.project-provider">
  10. <title>プロジェクトプロバイダーオプション</title>
  11. <tgroup cols="4">
  12. <thead>
  13. <row>
  14. <entry>プロバイダー名</entry>
  15. <entry>可能なアクション</entry>
  16. <entry>パラメータ</entry>
  17. <entry><acronym>CLI</acronym> 使用法</entry>
  18. </row>
  19. </thead>
  20. <tbody>
  21. <row>
  22. <entry>
  23. Controller
  24. </entry>
  25. <entry>
  26. Create
  27. </entry>
  28. <entry>
  29. create - [name, indexActionIncluded=true]
  30. </entry>
  31. <entry>
  32. <command>zf create controller foo</command>
  33. </entry>
  34. </row>
  35. <row>
  36. <entry>
  37. Action
  38. </entry>
  39. <entry>
  40. Create
  41. </entry>
  42. <entry>
  43. create - [name, controllerName=index, viewIncluded=true]
  44. </entry>
  45. <entry>
  46. <command>zf create action bar foo</command>
  47. (または <command>zf create action --name bar --controlller-name=foo</command>)
  48. </entry>
  49. </row>
  50. <row>
  51. <entry>
  52. Controller
  53. </entry>
  54. <entry>
  55. Create
  56. </entry>
  57. <entry>
  58. create - [name, indexActionIncluded=true]
  59. </entry>
  60. <entry>
  61. <command>zf create controller foo</command>
  62. </entry>
  63. </row>
  64. <row>
  65. <entry>
  66. Profile
  67. </entry>
  68. <entry>
  69. Show
  70. </entry>
  71. <entry>
  72. show - []
  73. </entry>
  74. <entry>
  75. <command>zf show profile</command>
  76. </entry>
  77. </row>
  78. <row>
  79. <entry>
  80. View
  81. </entry>
  82. <entry>
  83. Create
  84. </entry>
  85. <entry>
  86. create - [controllerName,actionNameOrSimpleName]
  87. </entry>
  88. <entry>
  89. <command>zf create view foo bar</command>
  90. (または <command>zf create view -c foo -a bar</command>)
  91. </entry>
  92. </row>
  93. <row>
  94. <entry>
  95. Test
  96. </entry>
  97. <entry>
  98. Create / Enable / Disable
  99. </entry>
  100. <entry>
  101. create - [libraryClassName]
  102. </entry>
  103. <entry>
  104. <command>zf create test My_Foo_Baz</command> /
  105. <command>zf disable test</command> /
  106. <command>zf enable test</command>
  107. </entry>
  108. </row>
  109. </tbody>
  110. </tgroup>
  111. </table>
  112. </sect1>