| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <?xml version="1.0" encoding="utf-8"?>
- <!-- EN-Revision: 24604 -->
- <!-- Reviewed: no -->
- <sect1 id="zend.tool.project.providers">
- <title>Fournisseurs de Zend_Tool_Project</title>
- <para>
- Ci-dessous, vous trouverez un tableau de tous les fournisseurs embarqués avec
- <classname>Zend_Tool_Project</classname>.
- </para>
- <table id="zend.tool.project.project-provider">
- <title>Options du fournisseur Project</title>
- <tgroup cols="4">
- <thead>
- <row>
- <entry>Nom du fournisseur</entry>
- <entry>Actions disponibles</entry>
- <entry>Paramètres</entry>
- <entry>Utilisation en <acronym>CLI</acronym></entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>
- Controller
- </entry>
- <entry>
- Création
- </entry>
- <entry>
- create - [name, indexActionIncluded=true]
- </entry>
- <entry>
- <command>zf create controller foo</command>
- </entry>
- </row>
- <row>
- <entry>
- Action
- </entry>
- <entry>
- Création
- </entry>
- <entry>
- create - [name, controllerName=index, viewIncluded=true]
- </entry>
- <entry>
- <command>zf create action bar foo</command>
- (ou <command>zf create action --name bar --controlller-name=foo</command>)
- </entry>
- </row>
- <row>
- <entry>
- Controller
- </entry>
- <entry>
- Création
- </entry>
- <entry>
- create - [name, indexActionIncluded=true]
- </entry>
- <entry>
- <command>zf create controller foo</command>
- </entry>
- </row>
- <row>
- <entry>
- Profile
- </entry>
- <entry>
- Visualisation
- </entry>
- <entry>
- show - []
- </entry>
- <entry>
- <command>zf show profile</command>
- </entry>
- </row>
- <row>
- <entry>
- View
- </entry>
- <entry>
- Création
- </entry>
- <entry>
- create - [controllerName,actionNameOrSimpleName]
- </entry>
- <entry>
- <command>zf create view foo bar</command>
- (ou <command>zf create view -c foo -a bar</command>)
- </entry>
- </row>
- <row>
- <entry>
- Test
- </entry>
- <entry>
- Création / Activation / Désactivation
- </entry>
- <entry>
- create - [libraryClassName]
- </entry>
- <entry>
- <command>zf create test My_Foo_Baz</command> /
- <command>zf disable test</command> /
- <command>zf enable test</command>
- </entry>
- </row>
- <row>
- <entry>DbTable</entry>
- <entry>Création</entry>
- <entry>create - [libraryClassName, tableName, ModuleName=null, forceOverwrite=false]</entry>
- <entry>
- <command>zf create db-table FooClass FooTableName BarModule force-overwrite</command> /
- <command>zf create db-table FooClass FooTableName BarModule</command> /
- <command>zf create db-table FooClass FooTableName</command> /
- <command>zf create db-table FooClass FooTableName --force-overwrite=true</command> /
- <command>zf create db-table.from-database BarModule force-overwrite </command> /
- <command>zf create db-table.from-database BarModule </command> /
- <command>zf create db-table.from-database --force-overwrite=true </command>
- </entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- </sect1>
|