Zend_Tool_Project-Providers.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <!-- EN-Revision: 21741 -->
  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>Controller</entry>
  23. <entry>Create</entry>
  24. <entry>create - [name, indexActionIncluded=true]</entry>
  25. <entry><command>zf create controller foo</command></entry>
  26. </row>
  27. <row>
  28. <entry>Action</entry>
  29. <entry>Create</entry>
  30. <entry>create - [name, controllerName=index, viewIncluded=true]</entry>
  31. <entry>
  32. <command>zf create action bar foo</command>
  33. (または <command>zf create action --name bar --controlller-name=foo</command>)
  34. </entry>
  35. </row>
  36. <row>
  37. <entry>Controller</entry>
  38. <entry>Create</entry>
  39. <entry>create - [name, indexActionIncluded=true]</entry>
  40. <entry><command>zf create controller foo</command></entry>
  41. </row>
  42. <row>
  43. <entry>Profile</entry><entry>Show
  44. </entry>
  45. <entry>show - []</entry>
  46. <entry><command>zf show profile</command></entry>
  47. </row>
  48. <row>
  49. <entry>View</entry>
  50. <entry>Create</entry>
  51. <entry>create - [controllerName,actionNameOrSimpleName]</entry>
  52. <entry>
  53. <command>zf create view foo bar</command>
  54. (または <command>zf create view -c foo -a bar</command>)
  55. </entry>
  56. </row>
  57. <row>
  58. <entry>Test</entry>
  59. <entry>Create / Enable / Disable</entry>
  60. <entry>create - [libraryClassName]</entry>
  61. <entry>
  62. <command>zf create test My_Foo_Baz</command> /
  63. <command>zf disable test</command> /
  64. <command>zf enable test</command>
  65. </entry>
  66. </row>
  67. </tbody>
  68. </tgroup>
  69. </table>
  70. </sect1>