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 Zend_Auth and Zend_Acl, provide user
  19. authentication and authorization against all common credential stores. Still others
  20. implement client libraries to simply access to the most popular web services available.
  21. Whatever your application needs are, you're likely to find a Zend Framework component
  22. that can be used to dramatically reduce development time with a thoroughly tested
  23. 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 features
  28. to the framework. Companies such as Google, Microsoft, and StrikeIron have partnered
  29. with Zend to provide interfaces to web services and other technologies that they wish to make
  30. 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 vibrant
  34. ZF community. Community members, including contributors, make themselves available
  35. on <ulink url="http://framework.zend.com/archives">mailing lists</ulink>, <ulink url="http://www.zftalk.com">
  36. IRC channels</ulink>, and other forums. Whatever question you have about ZF, the community
  37. is always available to address it.
  38. </para>
  39. </sect1>
  40. <!--
  41. vim:se ts=4 sw=4 et:
  42. -->