Zend_Tool_Framework-SystemProviders.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect1 id="zend.tool.framework.system-providers">
  4. <title>Shipped System Providers</title>
  5. <para>
  6. In addition to the more useful project based providers that come shipped
  7. with <classname>Zend_Tool_Project</classname>, there are also some more basic, but
  8. interesting providers that come built into
  9. <classname>Zend_Tool_Framework</classname>. Some of these exist for the purpose
  10. of providing a means via the command line to extract information, such
  11. as the version, while others are intended to aid the developer when
  12. creating additional providers.
  13. </para>
  14. <sect2 id="zend.tool.framework.system-providers.version">
  15. <title>The Version Provider</title>
  16. <para>
  17. The Version provider is included so that you may determine which
  18. version of the framework that the <command>zf</command> or
  19. <classname>Zend_Tool</classname> is currently set to work with.
  20. </para>
  21. <para>
  22. Through the command line, simply run <command>zf show version</command>.
  23. </para>
  24. </sect2>
  25. <sect2 id="zend.tool.framework.system-providers.manifest">
  26. <title>The Manifest Provider</title>
  27. <para>
  28. The Manifest provider is included so that you may determine what
  29. kind of "manifest" information is available during the
  30. <classname>Zend_Tool</classname> runtime. Manifest data is information that
  31. is attached to specific objects during <classname>Zend_Tool</classname>'s
  32. runtime. Inside the manifest you will find the console specific
  33. namings that you are expected to use when calling certain commands.
  34. Data found in the manifest can be used by any provider or client on
  35. an as-needed basis.
  36. </para>
  37. <para>
  38. Through the command line, simply run <command>zf show manifest</command>.
  39. </para>
  40. </sect2>
  41. </sect1>