overview.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect1 id="introduction.overview">
  4. <title>Overview</title>
  5. <para>
  6. Zend Framework (ZF) is an open source framework for developing web
  7. applications and services with PHP 5. ZF is implemented using 100% object-oriented
  8. code. The component structure of ZF is somewhat unique; each component is designed
  9. with few dependencies on other components. This loosely coupled architecture allows
  10. developers to use components individually. We often call this a "use-at-will" design.
  11. </para>
  12. <para>
  13. While they can be used separately, Zend Framework components in the standard library
  14. form a powerful and extensible web application framework when combined. ZF offers a
  15. robust, high performance MVC implementation, a database abstraction that is simple to
  16. use, and a forms component that implements HTML form rendering, validation, and filtering
  17. so that developers can consolidate all of these operations using one easy-to-use, object
  18. oriented interface. Other components, such as <classname>Zend_Auth</classname> and
  19. <classname>Zend_Acl</classname>, provide user authentication and authorization against
  20. all common credential stores. Still others implement client libraries to simply access
  21. to the most popular web services available. Whatever your application needs are, you're
  22. likely to find a Zend Framework component that can be used to dramatically reduce
  23. development time with a thoroughly tested foundation.
  24. </para>
  25. <para>
  26. The principal sponsor of the Zend Framework project is <ulink url="http://www.zend.com">
  27. Zend Technologies</ulink>, but many companies have contributed components or significant
  28. features to the framework. Companies such as Google, Microsoft, and StrikeIron have
  29. partnered with Zend to provide interfaces to web services and other technologies that they
  30. wish to make available to Zend Framework developers.
  31. </para>
  32. <para>
  33. Zend Framework could not deliver and support all of these features without the help of the
  34. vibrant ZF community. Community members, including contributors, make themselves available
  35. on <ulink url="http://framework.zend.com/archives">mailing lists</ulink>,
  36. <ulink url="http://www.zftalk.com">IRC channels</ulink>, and other forums. Whatever
  37. question you have about ZF, the community is always available to address it.
  38. </para>
  39. </sect1>
  40. <!--
  41. vim:se ts=4 sw=4 et:
  42. -->