overview.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <chapter id="introduction.overview">
  4. <title>Overview</title>
  5. <para>
  6. Zend Framework is an open source framework for developing web applications and services
  7. with <acronym>PHP</acronym> 5. Zend Framework is implemented using 100% object-oriented
  8. code. The component structure of Zend Framework is somewhat unique; each component is
  9. designed 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 form a
  14. powerful and extensible web application framework when combined. Zend Framework offers a
  15. robust, high performance <acronym>MVC</acronym> implementation, a database abstraction that
  16. is simple to use, and a forms component that implements <acronym>HTML</acronym> form
  17. rendering, validation, and filtering so that developers can consolidate all of these
  18. operations using one easy-to-use, object oriented interface. Other components, such as
  19. <classname>Zend_Auth</classname> and <classname>Zend_Acl</classname>, provide user
  20. authentication and authorization against all common credential stores. Still others
  21. implement client libraries to simply access to the most popular web services available.
  22. Whatever your application needs are, you're likely to find a Zend Framework component that
  23. can be used to dramatically reduce development time with a thoroughly tested foundation.
  24. </para>
  25. <para>
  26. The principal sponsor of the project 'Zend Framework' 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 Zend Framework community. Community members, including contributors, make
  35. themselves available on <ulink url="http://framework.zend.com/archives">mailing
  36. lists</ulink>, <ulink url="http://www.zftalk.com">IRC channels</ulink>, and other
  37. forums. Whatever question you have about Zend Framework, the community is always available
  38. to address it.
  39. </para>
  40. </chapter>
  41. <!--
  42. vim:se ts=4 sw=4 et:
  43. -->