Zend_Tool_Project-Providers.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- EN-Revision: 24604 -->
  3. <!-- Reviewed: no -->
  4. <sect1 id="zend.tool.project.providers">
  5. <title>Fournisseurs de Zend_Tool_Project</title>
  6. <para>
  7. Ci-dessous, vous trouverez un tableau de tous les fournisseurs embarqués avec
  8. <classname>Zend_Tool_Project</classname>.
  9. </para>
  10. <table id="zend.tool.project.project-provider">
  11. <title>Options du fournisseur Project</title>
  12. <tgroup cols="4">
  13. <thead>
  14. <row>
  15. <entry>Nom du fournisseur</entry>
  16. <entry>Actions disponibles</entry>
  17. <entry>Paramètres</entry>
  18. <entry>Utilisation en <acronym>CLI</acronym></entry>
  19. </row>
  20. </thead>
  21. <tbody>
  22. <row>
  23. <entry>
  24. Controller
  25. </entry>
  26. <entry>
  27. Création
  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. Création
  42. </entry>
  43. <entry>
  44. create - [name, controllerName=index, viewIncluded=true]
  45. </entry>
  46. <entry>
  47. <command>zf create action bar foo</command>
  48. (ou <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. Création
  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. Visualisation
  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. Création
  85. </entry>
  86. <entry>
  87. create - [controllerName,actionNameOrSimpleName]
  88. </entry>
  89. <entry>
  90. <command>zf create view foo bar</command>
  91. (ou <command>zf create view -c foo -a bar</command>)
  92. </entry>
  93. </row>
  94. <row>
  95. <entry>
  96. Test
  97. </entry>
  98. <entry>
  99. Création / Activation / Désactivation
  100. </entry>
  101. <entry>
  102. create - [libraryClassName]
  103. </entry>
  104. <entry>
  105. <command>zf create test My_Foo_Baz</command> /
  106. <command>zf disable test</command> /
  107. <command>zf enable test</command>
  108. </entry>
  109. </row>
  110. <row>
  111. <entry>DbTable</entry>
  112. <entry>Création</entry>
  113. <entry>create - [libraryClassName, tableName, ModuleName=null, forceOverwrite=false]</entry>
  114. <entry>
  115. <command>zf create db-table FooClass FooTableName BarModule force-overwrite</command> /
  116. <command>zf create db-table FooClass FooTableName BarModule</command> /
  117. <command>zf create db-table FooClass FooTableName</command> /
  118. <command>zf create db-table FooClass FooTableName --force-overwrite=true</command> /
  119. <command>zf create db-table.from-database BarModule force-overwrite </command> /
  120. <command>zf create db-table.from-database BarModule </command> /
  121. <command>zf create db-table.from-database --force-overwrite=true </command>
  122. </entry>
  123. </row>
  124. </tbody>
  125. </tgroup>
  126. </table>
  127. </sect1>