requirements.xml 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944
  1. <appendix id="requirements">
  2. <title>Systémové požadavky</title>
  3. <para>
  4. Tato sekce dokumentuje požadavky pro Zend Framework.
  5. </para>
  6. <sect1 id="requirements.version">
  7. <title>Požadovaná verze PHP</title>
  8. <para>
  9. Zend Framework vyžaduje PHP 5.1.4 nebo vyšší. Některá SPL rozhraní
  10. jako například <code>Countable</code> nebyla v předchozích
  11. verzích PHP stabilní.
  12. </para>
  13. <para>
  14. Zend Framework má obsáhlou kolekci automatických testů, které můžete
  15. spustit s použitím PHPUnit 3.0 nebo vyšší. Tato verze PHPUnit také
  16. vyžaduje PHP 5.1.4 nebo vyšší.
  17. </para>
  18. <para>
  19. Přestože Zend Framework bude fungovat správně s verzí PHP zmíněnou výše,
  20. doporučujeme použití PHP 5.2.3 nebo vyšší. Novější verze PHP obsahuje
  21. důležitá bezpečnostní a výkonová vylepšení.
  22. </para>
  23. </sect1>
  24. <sect1 id="requirements.extensions">
  25. <title>PHP rozšíření (Extensions)</title>
  26. <para>
  27. Následující tabulka obsahuje všechna rozšíření běžně použitá v PHP
  28. a jejich použití v Zend Frameworku. Tato tabulka vám může pomoci zjistit,
  29. která rozšíření jsou potřebná pro vaši aplikaci. Ne všechna rozšíření
  30. použitá Zend Frameworkem jsou potřebná pro každou aplikaci.
  31. </para>
  32. <para>
  33. Typ použití "Závislost" znamená, že komponenta nebo třídy nejsou
  34. použitelné bez přislušného rozšíření. Způsob použití "Volitelné"
  35. znamená, že pokud rozšíření není dostupné, komponenta nebo třídy
  36. automaticky použije alternativní kód.
  37. </para>
  38. <table frame='all' id="requirements.extensions.table-1">
  39. <title>PHP rozšíření použitá v Zend Frameworku</title>
  40. <tgroup cols='3'>
  41. <colspec colwidth='1in'/>
  42. <colspec colwidth='1in'/>
  43. <colspec colwidth='3in'/>
  44. <thead>
  45. <row>
  46. <entry>Rozšíření</entry>
  47. <entry>Typ použití</entry>
  48. <entry>Použito komponentami Zend Frameworku</entry>
  49. </row>
  50. </thead>
  51. <tbody>
  52. <row>
  53. <entry><ulink url="http://www.php.net/manual/en/ref.apc.php"><code>apc</code></ulink></entry>
  54. <entry>Závislost</entry>
  55. <entry><ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Apc</code></ulink></entry>
  56. </row>
  57. <row>
  58. <entry><ulink url="http://www.php.net/manual/en/ref.bc.php"><code>bcmath</code></ulink></entry>
  59. <entry>Volitelné</entry>
  60. <entry><ulink url="http://framework.zend.com/manual/en/zend.locale.html"><code>Zend_Locale_Math</code></ulink></entry>
  61. </row>
  62. <row>
  63. <entry><ulink url="http://pecl.php.net/package/Bitset"><code>bitset</code></ulink></entry>
  64. <entry>Volitelné</entry>
  65. <entry><ulink url="http://framework.zend.com/manual/en/zend.search.lucene.html"><code>Zend_Search_Lucene</code></ulink></entry>
  66. </row>
  67. <row>
  68. <entry><ulink url="http://www.php.net/manual/en/ref.bzip2.php"><code>bz2</code></ulink></entry>
  69. <entry>--</entry>
  70. <entry></entry>
  71. </row>
  72. <row>
  73. <entry><ulink url="http://www.php.net/manual/en/ref.calendar.php"><code>calendar</code></ulink></entry>
  74. <entry>---</entry>
  75. <entry></entry>
  76. </row>
  77. <row>
  78. <entry><ulink url="http://www.php.net/manual/en/ref.com.php"><code>com_dotnet</code></ulink></entry>
  79. <entry>---</entry>
  80. <entry></entry>
  81. </row>
  82. <row>
  83. <entry><ulink url="http://www.php.net/manual/en/ref.ctype.php"><code>ctype</code></ulink></entry>
  84. <entry>Závislost</entry>
  85. <entry>
  86. <ulink url="http://framework.zend.com/manual/en/zend.auth.adapter.http.html"><code>Zend_Auth_Adapter_Http</code></ulink>,
  87. <ulink url="http://framework.zend.com/manual/en/zend.gdata.html"><code>Zend_Gdata_App</code></ulink>,
  88. <ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http_Client</code></ulink>,
  89. <ulink url="http://framework.zend.com/manual/en/zend.pdf.html"><code>Zend_Pdf</code></ulink>,
  90. <ulink url="http://framework.zend.com/manual/en/zend.rest.client.html"><code>Zend_Rest_Client</code></ulink>,
  91. <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink>,
  92. <ulink url="http://framework.zend.com/manual/en/zend.search.lucene.html"><code>Zend_Search_Lucene</code></ulink>,
  93. <ulink url="http://framework.zend.com/manual/en/zend.uri.html"><code>Zend_Uri</code></ulink>,
  94. <ulink url="http://framework.zend.com/manual/en/zend.validate.html"><code>Zend_Validate</code></ulink>
  95. </entry>
  96. </row>
  97. <row>
  98. <entry><ulink url="http://www.php.net/manual/en/ref.curl.php"><code>curl</code></ulink></entry>
  99. <entry>Závislost</entry>
  100. <entry><ulink url="http://framework.zend.com/manual/en/zend.http.client.adapters.html"><code>Zend_Http_Client_Adapter_Curl</code></ulink></entry>
  101. </row>
  102. <row>
  103. <entry><ulink url="http://www.php.net/manual/en/ref.datetime.php"><code>date</code></ulink></entry>
  104. <entry>---</entry>
  105. <entry></entry>
  106. </row>
  107. <row>
  108. <entry><ulink url="http://www.php.net/manual/en/ref.dba.php"><code>dba</code></ulink></entry>
  109. <entry>---</entry>
  110. <entry></entry>
  111. </row>
  112. <row>
  113. <entry><ulink url="http://www.php.net/manual/en/ref.dbase.php"><code>dbase</code></ulink></entry>
  114. <entry>---</entry>
  115. <entry></entry>
  116. </row>
  117. <row>
  118. <entry><ulink url="http://www.php.net/manual/en/ref.dom.php"><code>dom</code></ulink></entry>
  119. <entry>Závislost</entry>
  120. <entry>
  121. <ulink url="http://framework.zend.com/manual/en/zend.feed.html"><code>Zend_Feed</code></ulink>,
  122. <ulink url="http://framework.zend.com/manual/en/zend.gdata.html"><code>Zend_Gdata</code></ulink>,
  123. <ulink url="http://framework.zend.com/manual/en/zend.log.formatters.html"><code>Zend_Log_Formatter_Xml</code></ulink>,
  124. <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink>,
  125. <ulink url="http://framework.zend.com/manual/en/zend.search.lucene.html"><code>Zend_Search_Lucene</code></ulink>,
  126. <ulink url="http://framework.zend.com/manual/en/zend.service.amazon.html"><code>Zend_Service_Amazon</code></ulink>,
  127. <ulink url="http://framework.zend.com/manual/en/zend.service.delicious.html"><code>Zend_Service_Delicious</code></ulink>,
  128. <ulink url="http://framework.zend.com/manual/en/zend.service.flickr.html"><code>Zend_Service_Flickr</code></ulink>,
  129. <ulink url="http://framework.zend.com/manual/en/zend.service.yahoo.html"><code>Zend_Service_Yahoo</code></ulink>,
  130. <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.html"><code>Zend_XmlRpc</code></ulink>
  131. </entry>
  132. </row>
  133. <row>
  134. <entry><ulink url="http://www.php.net/manual/en/ref.exif.php"><code>exif</code></ulink></entry>
  135. <entry>---</entry>
  136. <entry></entry>
  137. </row>
  138. <row>
  139. <entry><ulink url="http://www.php.net/manual/en/ref.fbsql.php"><code>fbsql</code></ulink></entry>
  140. <entry>---</entry>
  141. <entry></entry>
  142. </row>
  143. <row>
  144. <entry><ulink url="http://www.php.net/manual/en/ref.fdf.php"><code>fdf</code></ulink></entry>
  145. <entry>---</entry>
  146. <entry></entry>
  147. </row>
  148. <row>
  149. <entry><ulink url="http://www.php.net/manual/en/ref.filter.php"><code>filter</code></ulink></entry>
  150. <entry>---</entry>
  151. <entry></entry>
  152. </row>
  153. <row>
  154. <entry><ulink url="http://www.php.net/manual/en/ref.ftp.php"><code>ftp</code></ulink></entry>
  155. <entry>---</entry>
  156. <entry></entry>
  157. </row>
  158. <row>
  159. <entry><ulink url="http://www.php.net/manual/en/ref.image.php"><code>gd</code></ulink></entry>
  160. <entry>Závislost</entry>
  161. <entry><ulink url="http://framework.zend.com/manual/en/zend.pdf.html"><code>Zend_Pdf</code></ulink></entry>
  162. </row>
  163. <row>
  164. <entry><ulink url="http://www.php.net/manual/en/ref.gettext.php"><code>gettext</code></ulink></entry>
  165. <entry>---</entry>
  166. <entry></entry>
  167. </row>
  168. <row>
  169. <entry><ulink url="http://www.php.net/manual/en/ref.gmp.php"><code>gmp</code></ulink></entry>
  170. <entry>---</entry>
  171. <entry></entry>
  172. </row>
  173. <row>
  174. <entry><ulink url="http://www.php.net/manual/en/ref.hash.php"><code>hash</code></ulink></entry>
  175. <entry>Závislost</entry>
  176. <entry><ulink url="http://framework.zend.com/manual/en/zend.auth.adapter.http.html"><code>Zend_Auth_Adapter_Http</code></ulink></entry>
  177. </row>
  178. <row>
  179. <entry><ulink url="http://www.php.net/manual/en/ref.ibm-db2.php"><code>ibm_db2</code></ulink></entry>
  180. <entry>Závislost</entry>
  181. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Db2</code></ulink></entry>
  182. </row>
  183. <row>
  184. <entry><ulink url="http://www.php.net/manual/en/ref.iconv.php"><code>iconv</code></ulink></entry>
  185. <entry>Závislost</entry>
  186. <entry>
  187. <ulink url="http://framework.zend.com/manual/en/zend.locale.parsing.html"><code>Zend_Locale_Format</code></ulink>,
  188. <ulink url="http://framework.zend.com/manual/en/zend.mime.html"><code>Zend_Mime_Decode</code></ulink>,
  189. <ulink url="http://framework.zend.com/manual/en/zend.pdf.html"><code>Zend_Pdf</code></ulink>,
  190. <ulink url="http://framework.zend.com/manual/en/zend.search.lucene.html"><code>Zend_Search_Lucene</code></ulink>,
  191. <ulink url="http://framework.zend.com/manual/en/zend.service.audioscrobbler.html"><code>Zend_Service_Audioscrobbler</code></ulink>,
  192. <ulink url="http://framework.zend.com/manual/en/zend.service.flickr.html"><code>Zend_Service_Flickr</code></ulink>,
  193. <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.client.html"><code>Zend_XmlRpc_Client</code></ulink>
  194. </entry>
  195. </row>
  196. <row>
  197. <entry><ulink url="http://www.php.net/manual/en/ref.imap.php"><code>imap</code></ulink></entry>
  198. <entry>---</entry>
  199. <entry></entry>
  200. </row>
  201. <row>
  202. <entry><ulink url="http://www.php.net/manual/en/ref.ifx.php"><code>informix</code></ulink></entry>
  203. <entry>---</entry>
  204. <entry></entry>
  205. </row>
  206. <row>
  207. <entry><ulink url="http://www.php.net/manual/en/ref.ibase.php"><code>interbase</code></ulink></entry>
  208. <entry>Závislost</entry>
  209. <entry>Zend_Db_Adapter_Firebird</entry>
  210. </row>
  211. <row>
  212. <entry><ulink url="http://www.php.net/manual/en/ref.json.php"><code>json</code></ulink></entry>
  213. <entry>Volitelné</entry>
  214. <entry><ulink url="http://framework.zend.com/manual/en/zend.json.html"><code>Zend_Json</code></ulink></entry>
  215. </row>
  216. <row>
  217. <entry><ulink url="http://www.php.net/manual/en/ref.ldap.php"><code>ldap</code></ulink></entry>
  218. <entry>---</entry>
  219. <entry></entry>
  220. </row>
  221. <row>
  222. <entry><ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink></entry>
  223. <entry>Závislost</entry>
  224. <entry>
  225. <ulink url="http://www.php.net/manual/en/ref.dom.php"><code>DOM</code></ulink>,
  226. <ulink url="http://www.php.net/manual/en/ref.simplexml.php"><code>SimpleXML</code></ulink>,
  227. <ulink url="http://www.php.net/manual/en/ref.xslt.php"><code>XSLT</code></ulink>
  228. </entry>
  229. </row>
  230. <row>
  231. <entry><ulink url="http://www.php.net/manual/en/ref.mbstring.php"><code>mbstring</code></ulink></entry>
  232. <entry>Závislost</entry>
  233. <entry><ulink url="http://framework.zend.com/manual/en/zend.feed.html"><code>Zend_Feed</code></ulink></entry>
  234. </row>
  235. <row>
  236. <entry><ulink url="http://www.php.net/manual/en/ref.mcrypt.php"><code>mcrypt</code></ulink></entry>
  237. <entry>---</entry>
  238. <entry></entry>
  239. </row>
  240. <row>
  241. <entry><ulink url="http://www.php.net/manual/en/ref.memcache.php"><code>memcache</code></ulink></entry>
  242. <entry>Závislost</entry>
  243. <entry><ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Memcached</code></ulink></entry>
  244. </row>
  245. <row>
  246. <entry><ulink url="http://www.php.net/manual/en/ref.mhash.php"><code>mhash</code></ulink></entry>
  247. <entry>---</entry>
  248. <entry></entry>
  249. </row>
  250. <row>
  251. <entry><ulink url="http://www.php.net/manual/en/ref.mime-magic.php"><code>mime_magic</code></ulink></entry>
  252. <entry>Závislost</entry>
  253. <entry><ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http_Client</code></ulink></entry>
  254. </row>
  255. <row>
  256. <entry><ulink url="http://www.php.net/manual/en/ref.ming.php"><code>ming</code></ulink></entry>
  257. <entry>---</entry>
  258. <entry></entry>
  259. </row>
  260. <row>
  261. <entry><ulink url="http://www.php.net/manual/en/ref.msql.php"><code>msql</code></ulink></entry>
  262. <entry>---</entry>
  263. <entry></entry>
  264. </row>
  265. <row>
  266. <entry><ulink url="http://www.php.net/manual/en/ref.mssql.php"><code>mssql</code></ulink></entry>
  267. <entry>---</entry>
  268. <entry></entry>
  269. </row>
  270. <row>
  271. <entry><ulink url="http://www.php.net/manual/en/ref.mysql.php"><code>mysql</code></ulink></entry>
  272. <entry>---</entry>
  273. <entry></entry>
  274. </row>
  275. <row>
  276. <entry><ulink url="http://www.php.net/manual/en/ref.mysqli.php"><code>mysqli</code></ulink></entry>
  277. <entry>Závislost</entry>
  278. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Mysqli</code></ulink></entry>
  279. </row>
  280. <row>
  281. <entry><ulink url="http://www.php.net/manual/en/ref.ncurses.php"><code>ncurses</code></ulink></entry>
  282. <entry>---</entry>
  283. <entry></entry>
  284. </row>
  285. <row>
  286. <entry><ulink url="http://www.php.net/manual/en/ref.oci8.php"><code>oci8</code></ulink></entry>
  287. <entry>Závislost</entry>
  288. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Oracle</code></ulink></entry>
  289. </row>
  290. <row>
  291. <entry><ulink url="http://www.php.net/manual/en/ref.uodbc.php"><code>odbc</code></ulink></entry>
  292. <entry>---</entry>
  293. <entry></entry>
  294. </row>
  295. <row>
  296. <entry><ulink url="http://www.php.net/manual/en/ref.openssl.php"><code>openssl</code></ulink></entry>
  297. <entry>---</entry>
  298. <entry></entry>
  299. </row>
  300. <row>
  301. <entry><ulink url="http://www.php.net/manual/en/ref.pcntl.php"><code>pcntl</code></ulink></entry>
  302. <entry>---</entry>
  303. <entry></entry>
  304. </row>
  305. <row>
  306. <entry><ulink url="http://www.php.net/manual/en/ref.pcre.php"><code>pcre</code></ulink></entry>
  307. <entry>Závislost</entry>
  308. <entry>Virtually all components</entry>
  309. </row>
  310. <row>
  311. <entry><ulink url="http://www.php.net/manual/en/ref.pdo.php"><code>pdo</code></ulink></entry>
  312. <entry>Závislost</entry>
  313. <entry>All PDO database adapters</entry>
  314. </row>
  315. <row>
  316. <entry><ulink url="http://www.php.net/manual/en/ref.pdo-dblib.php"><code>pdo_dblib</code></ulink></entry>
  317. <entry>---</entry>
  318. <entry></entry>
  319. </row>
  320. <row>
  321. <entry><ulink url="http://www.php.net/manual/en/ref.pdo-firebird.php"><code>pdo_firebird</code></ulink></entry>
  322. <entry>---</entry>
  323. <entry></entry>
  324. </row>
  325. <row>
  326. <entry><code>pdo_mssql</code></entry>
  327. <entry>Závislost</entry>
  328. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Mssql</code></ulink></entry>
  329. </row>
  330. <row>
  331. <entry><ulink url="http://www.php.net/manual/en/ref.pdo-mysql.php"><code>pdo_mysql</code></ulink></entry>
  332. <entry>Závislost</entry>
  333. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Mysql</code></ulink></entry>
  334. </row>
  335. <row>
  336. <entry><ulink url="http://www.php.net/manual/en/ref.pdo-oci.php"><code>pdo_oci</code></ulink></entry>
  337. <entry>Závislost</entry>
  338. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Oci</code></ulink></entry>
  339. </row>
  340. <row>
  341. <entry><ulink url="http://www.php.net/manual/en/ref.pdo-pgsql.php"><code>pdo_pgsql</code></ulink></entry>
  342. <entry>Závislost</entry>
  343. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Pgsql</code></ulink></entry>
  344. </row>
  345. <row>
  346. <entry><ulink url="http://www.php.net/manual/en/ref.pdo-sqlite.php"><code>pdo_sqlite</code></ulink></entry>
  347. <entry>Závislost</entry>
  348. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Sqlite</code></ulink></entry>
  349. </row>
  350. <row>
  351. <entry><ulink url="http://www.php.net/manual/en/ref.pgsql.php"><code>pgsql</code></ulink></entry>
  352. <entry>---</entry>
  353. <entry></entry>
  354. </row>
  355. <row>
  356. <entry><ulink url="http://www.php.net/manual/en/ref.posix.php"><code>posix</code></ulink></entry>
  357. <entry>Volitelné</entry>
  358. <entry><ulink url="http://framework.zend.com/manual/en/zend.mail.html"><code>Zend_Mail</code></ulink></entry>
  359. </row>
  360. <row>
  361. <entry><ulink url="http://www.php.net/manual/en/ref.pspell.php"><code>pspell</code></ulink></entry>
  362. <entry>---</entry>
  363. <entry></entry>
  364. </row>
  365. <row>
  366. <entry><ulink url="http://www.php.net/manual/en/ref.readline.php"><code>readline</code></ulink></entry>
  367. <entry>---</entry>
  368. <entry></entry>
  369. </row>
  370. <row>
  371. <entry><ulink url="http://www.php.net/manual/en/ref.recode.php"><code>recode</code></ulink></entry>
  372. <entry>---</entry>
  373. <entry></entry>
  374. </row>
  375. <row>
  376. <entry><ulink url="http://www.php.net/manual/en/language.oop5.reflection.php"><code>Reflection</code></ulink></entry>
  377. <entry>Závislost</entry>
  378. <entry>
  379. <ulink url="http://framework.zend.com/manual/en/zend.controller.html"><code>Zend_Controller</code></ulink>,
  380. <ulink url="http://framework.zend.com/manual/en/zend.filter.html"><code>Zend_Filter</code></ulink>,
  381. <ulink url="http://framework.zend.com/manual/en/zend.filter.input.html"><code>Zend_Filter_Input</code></ulink>,
  382. <ulink url="http://framework.zend.com/manual/en/zend.json.html"><code>Zend_Json</code></ulink>,
  383. <ulink url="http://framework.zend.com/manual/en/zend.log.html"><code>Zend_Log</code></ulink>,
  384. <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink>,
  385. <ulink url="http://framework.zend.com/manual/en/zend.server.reflection.html"><code>Zend_Server_Reflection</code></ulink>,
  386. <ulink url="http://framework.zend.com/manual/en/zend.validate.html"><code>Zend_Validate</code></ulink>,
  387. <ulink url="http://framework.zend.com/manual/en/zend.view.html"><code>Zend_View</code></ulink>,
  388. <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.server.html"><code>Zend_XmlRpc_Server</code></ulink>
  389. </entry>
  390. </row>
  391. <row>
  392. <entry><ulink url="http://www.php.net/manual/en/ref.session.php"><code>session</code></ulink></entry>
  393. <entry>Závislost</entry>
  394. <entry>
  395. <ulink url="http://framework.zend.com/manual/en/zend.controller.actionhelpers.html"><code>Zend_Controller_Action_Helper_Redirector</code></ulink>,
  396. <ulink url="http://framework.zend.com/manual/en/zend.session.html"><code>Zend_Session</code></ulink>
  397. </entry>
  398. </row>
  399. <row>
  400. <entry><ulink url="http://www.php.net/manual/en/ref.shmop.php"><code>shmop</code></ulink></entry>
  401. <entry>---</entry>
  402. <entry></entry>
  403. </row>
  404. <row>
  405. <entry><ulink url="http://www.php.net/manual/en/ref.simplexml.php"><code>SimpleXML</code></ulink></entry>
  406. <entry>Závislost</entry>
  407. <entry>
  408. <ulink url="http://framework.zend.com/manual/en/zend.config.adapters.xml.html"><code>Zend_Config_Xml</code></ulink>,
  409. <ulink url="http://framework.zend.com/manual/en/zend.feed.html"><code>Zend_Feed</code></ulink>,
  410. <ulink url="http://framework.zend.com/manual/en/zend.rest.client.html"><code>Zend_Rest_Client</code></ulink>,
  411. <ulink url="http://framework.zend.com/manual/en/zend.service.audioscrobbler.html"><code>Zend_Service_Audioscrobbler</code></ulink>,
  412. <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.html"><code>Zend_XmlRpc</code></ulink>
  413. </entry>
  414. </row>
  415. <row>
  416. <entry><ulink url="http://www.php.net/manual/en/ref.soap.php"><code>soap</code></ulink></entry>
  417. <entry>Závislost</entry>
  418. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.strikeiron.html"><code>Zend_Service_StrikeIron</code></ulink></entry>
  419. </row>
  420. <row>
  421. <entry><ulink url="http://www.php.net/manual/en/ref.sockets.php"><code>sockets</code></ulink></entry>
  422. <entry>---</entry>
  423. <entry></entry>
  424. </row>
  425. <row>
  426. <entry><ulink url="http://www.php.net/manual/en/ref.spl.php"><code>SPL</code></ulink></entry>
  427. <entry>Závislost</entry>
  428. <entry>Virtually all components</entry>
  429. </row>
  430. <row>
  431. <entry><ulink url="http://www.php.net/manual/en/ref.sqlite.php"><code>SQLite</code></ulink></entry>
  432. <entry>Závislost</entry>
  433. <entry><ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html">Zend_Cache_Backend_Sqlite</ulink></entry>
  434. </row>
  435. <row>
  436. <entry><code>standard</code></entry>
  437. <entry>Závislost</entry>
  438. <entry>Virtually all components</entry>
  439. </row>
  440. <row>
  441. <entry><ulink url="http://www.php.net/manual/en/ref.sybase.php"><code>sybase</code></ulink></entry>
  442. <entry>---</entry>
  443. <entry></entry>
  444. </row>
  445. <row>
  446. <entry>sysvmsg</entry>
  447. <entry>---</entry>
  448. <entry></entry>
  449. </row>
  450. <row>
  451. <entry>sysvsem</entry>
  452. <entry>---</entry>
  453. <entry></entry>
  454. </row>
  455. <row>
  456. <entry>sysvshm</entry>
  457. <entry>---</entry>
  458. <entry></entry>
  459. </row>
  460. <row>
  461. <entry><ulink url="http://www.php.net/manual/en/ref.tidy.php"><code>tidy</code></ulink></entry>
  462. <entry>---</entry>
  463. <entry></entry>
  464. </row>
  465. <row>
  466. <entry><ulink url="http://www.php.net/manual/en/ref.tokenizer.php"><code>tokenizer</code></ulink></entry>
  467. <entry>---</entry>
  468. <entry></entry>
  469. </row>
  470. <row>
  471. <entry><ulink url="http://www.php.net/manual/en/ref.wddx.php"><code>wddx</code></ulink></entry>
  472. <entry>---</entry>
  473. <entry></entry>
  474. </row>
  475. <row>
  476. <entry><ulink url="http://www.php.net/manual/en/ref.xml.php"><code>xml</code></ulink></entry>
  477. <entry>Závislost</entry>
  478. <entry>
  479. <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Qt</code></ulink>,
  480. <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Tmx</code></ulink>,
  481. <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Xliff</code></ulink>
  482. </entry>
  483. </row>
  484. <row>
  485. <entry><ulink url="http://www.php.net/manual/en/ref.xmlreader.php"><code>XMLReader</code></ulink></entry>
  486. <entry>---</entry>
  487. <entry></entry>
  488. </row>
  489. <row>
  490. <entry><ulink url="http://www.php.net/manual/en/ref.xmlrpc.php"><code>xmlrpc</code></ulink></entry>
  491. <entry>---</entry>
  492. <entry></entry>
  493. </row>
  494. <row>
  495. <entry><ulink url="http://www.php.net/manual/en/ref.xmlwriter.php"><code>XMLWriter</code></ulink></entry>
  496. <entry>---</entry>
  497. <entry></entry>
  498. </row>
  499. <row>
  500. <entry><ulink url="http://www.php.net/manual/en/ref.xsl.php"><code>xsl</code></ulink></entry>
  501. <entry>---</entry>
  502. <entry></entry>
  503. </row>
  504. <row>
  505. <entry><ulink url="http://www.php.net/manual/en/ref.zip.php"><code>zip</code></ulink></entry>
  506. <entry>---</entry>
  507. <entry></entry>
  508. </row>
  509. <row>
  510. <entry><ulink url="http://www.php.net/manual/en/ref.zlib.php"><code>zlib</code></ulink></entry>
  511. <entry>Závislost</entry>
  512. <entry>
  513. <ulink url="http://framework.zend.com/manual/en/zend.pdf.html"><code>Zend_Pdf</code></ulink>,
  514. <ulink url="http://www.php.net/manual/en/ref.memcache.php"><code>Memcache</code></ulink>
  515. </entry>
  516. </row>
  517. </tbody>
  518. </tgroup>
  519. </table>
  520. </sect1>
  521. <sect1 id="requirements.zendcomponents">
  522. <title>Zend Framework komponenty</title>
  523. <para>
  524. Následující tabulka obsahuje seznam všech komponent Zend Frameworku
  525. a která PHP rozšíření potřebují. Tato tabulka vám může pomoci
  526. zjistit, které rozšíření jsou potřebná pro vaši aplikaci. Ne všechna
  527. rozšíření použitá Zend Frameworkem jsou potřebná pro každou aplikaci.
  528. </para>
  529. <table frame='all' id="requirements.zendcomponents.table-1">
  530. <title>Zend Framework komponenty a PHP rozšíření která používají</title>
  531. <tgroup cols='3'>
  532. <colspec colwidth='2in'/>
  533. <colspec colwidth='4in'/>
  534. <thead>
  535. <row>
  536. <entry>Zend Framework komponenta</entry>
  537. <entry>PHP Rozšíření ( Podtřída / Typ použití)</entry>
  538. </row>
  539. </thead>
  540. <tbody>
  541. <row>
  542. <entry>Všechny komponenty</entry>
  543. <entry>
  544. <ulink url="http://www.php.net/manual/en/ref.pcre.php"><code>pcre</code></ulink>
  545. ( Závislost )
  546. <ulink url="http://www.php.net/manual/en/ref.spl.php"><code>SPL</code></ulink>
  547. ( Závislost )
  548. <code>standard</code>
  549. ( Závislost )
  550. </entry>
  551. </row>
  552. <row>
  553. <entry><ulink url="http://framework.zend.com/manual/en/zend.acl.html"><code>Zend_Acl</code></ulink></entry>
  554. <entry>---</entry>
  555. </row>
  556. <row>
  557. <entry><ulink url="http://framework.zend.com/manual/en/zend.auth.html"><code>Zend_Auth</code></ulink></entry>
  558. <entry>
  559. <ulink url="http://www.php.net/manual/en/ref.ctype.php"><code>ctype</code></ulink>
  560. ( <ulink url="http://framework.zend.com/manual/en/zend.auth.adapter.http.html"><code>Zend_Auth_Adapter_Http</code></ulink> / Závislost )
  561. <ulink url="http://www.php.net/manual/en/ref.hash.php"><code>hash</code></ulink>
  562. ( <ulink url="http://framework.zend.com/manual/en/zend.auth.adapter.http.html"><code>Zend_Auth_Adapter_Http</code></ulink> / Závislost )
  563. </entry>
  564. </row>
  565. <row>
  566. <entry><ulink url="http://framework.zend.com/manual/en/zend.cache.html"><code>Zend_Cache</code></ulink></entry>
  567. <entry>
  568. <ulink url="http://www.php.net/manual/en/ref.apc.php"><code>apc</code></ulink>
  569. ( <ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Apc</code></ulink> / Závislost )
  570. <ulink url="http://www.php.net/manual/en/ref.memcache.php"><code>memcache</code></ulink>
  571. ( <ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Memcached</code></ulink> / Závislost )
  572. <ulink url="http://www.php.net/manual/en/ref.sqlite.php"><code>sqlite</code></ulink>
  573. ( <ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Sqlite</code></ulink> / Závislost )
  574. <ulink url="http://www.php.net/manual/en/ref.zlib.php"><code>zlib</code></ulink>
  575. ( <ulink url="http://framework.zend.com/manual/en/zend.cache.backends.html"><code>Zend_Cache_Backend_Zlib</code></ulink> / Závislost )
  576. </entry>
  577. </row>
  578. <row>
  579. <entry><ulink url="http://framework.zend.com/manual/en/zend.config.html"><code>Zend_Config</code></ulink></entry>
  580. <entry>
  581. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  582. ( <ulink url="http://framework.zend.com/manual/en/zend.config.adapters.xml.html"><code>Zend_Config_Xml</code></ulink> / Závislost )
  583. <ulink url="http://www.php.net/manual/en/ref.simplexml.php"><code>SimpleXML</code></ulink>
  584. ( <ulink url="http://framework.zend.com/manual/en/zend.config.adapters.xml.html"><code>Zend_Config_Xml</code></ulink> / Závislost )
  585. </entry>
  586. </row>
  587. <row>
  588. <entry><ulink url="http://framework.zend.com/manual/en/zend.console.getopt.html"><code>Zend_Console_Getopt</code></ulink></entry>
  589. <entry>---</entry>
  590. </row>
  591. <row>
  592. <entry><ulink url="http://framework.zend.com/manual/en/zend.controller.html"><code>Zend_Controller</code></ulink></entry>
  593. <entry>
  594. <ulink url="http://www.php.net/manual/en/language.oop5.reflection.php"><code>Reflection</code></ulink>
  595. ( Závislost )
  596. <ulink url="http://www.php.net/manual/en/ref.session.php"><code>session</code></ulink>
  597. ( <ulink url="http://framework.zend.com/manual/en/zend.controller.actionhelpers.html"><code>Zend_Controller_Action_Helper_Redirector</code></ulink> / Závislost )
  598. </entry>
  599. </row>
  600. <row>
  601. <entry><ulink url="http://framework.zend.com/manual/en/zend.date.html"><code>Zend_Date</code></ulink></entry>
  602. <entry>---</entry>
  603. </row>
  604. <row>
  605. <entry><ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db</code></ulink></entry>
  606. <entry>
  607. <ulink url="http://www.php.net/manual/en/ref.ibm-db2.php"><code>ibm_db2</code></ulink>
  608. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Db2</code></ulink> / Závislost )
  609. <ulink url="http://www.php.net/manual/en/ref.mysqli.php"><code>mysqli</code></ulink>
  610. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Mysqli</code></ulink> / Závislost )
  611. <ulink url="http://www.php.net/manual/en/ref.oci8.php"><code>oci8</code></ulink>
  612. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Oracle</code></ulink> / Závislost )
  613. <ulink url="http://www.php.net/manual/en/ref.pdo.php"><code>pdo</code></ulink>
  614. ( All PDO Adapters / Závislost )
  615. <code>pdo_mssql</code>
  616. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Mssql</code></ulink> / Závislost )
  617. <ulink url="http://www.php.net/manual/en/ref.pdo-mysql.php"><code>pdo_mysql</code></ulink>
  618. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Mysql</code></ulink> / Závislost )
  619. <ulink url="http://www.php.net/manual/en/ref.pdo-oci.php"><code>pdo_oci</code></ulink>
  620. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Oci</code></ulink> / Závislost )
  621. <ulink url="http://www.php.net/manual/en/ref.pdo-pgsql.php"><code>pdo_pgsql</code></ulink>
  622. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Pgsql</code></ulink> / Závislost )
  623. <ulink url="http://www.php.net/manual/en/ref.pdo-sqlite.php"><code>pdo_sqlite</code></ulink>
  624. ( <ulink url="http://framework.zend.com/manual/en/zend.db.html"><code>Zend_Db_Adapter_Pdo_Sqlite</code></ulink> / Závislost )
  625. </entry>
  626. </row>
  627. <row>
  628. <entry><ulink url="http://framework.zend.com/manual/en/zend.debug.html"><code>Zend_Debug</code></ulink></entry>
  629. <entry>---</entry>
  630. </row>
  631. <row>
  632. <entry><ulink url="http://framework.zend.com/manual/en/zend.exception.html"><code>Zend_Exception</code></ulink></entry>
  633. <entry>---</entry>
  634. </row>
  635. <row>
  636. <entry><ulink url="http://framework.zend.com/manual/en/zend.feed.html"><code>Zend_Feed</code></ulink></entry>
  637. <entry>
  638. <ulink url="http://www.php.net/manual/en/ref.dom.php"><code>dom</code></ulink>
  639. ( Závislost )
  640. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  641. ( Závislost )
  642. <ulink url="http://www.php.net/manual/en/ref.mbstring.php"><code>mbstring</code></ulink>
  643. ( Závislost )
  644. <ulink url="http://www.php.net/manual/en/ref.simplexml.php"><code>SimpleXML</code></ulink>
  645. ( Závislost )
  646. </entry>
  647. </row>
  648. <row>
  649. <entry><ulink url="http://framework.zend.com/manual/en/zend.filter.html"><code>Zend_Filter</code></ulink></entry>
  650. <entry>
  651. <ulink url="http://www.php.net/manual/en/language.oop5.reflection.php"><code>Reflection</code></ulink>
  652. ( Závislost )
  653. </entry>
  654. </row>
  655. <row>
  656. <entry><ulink url="http://framework.zend.com/manual/en/zend.filter.input.html"><code>Zend_Filter_Input</code></ulink></entry>
  657. <entry>
  658. <ulink url="http://www.php.net/manual/en/language.oop5.reflection.php"><code>Reflection</code></ulink>
  659. ( Závislost )
  660. </entry>
  661. </row>
  662. <row>
  663. <entry><ulink url="http://framework.zend.com/manual/en/zend.gdata.html"><code>Zend_Gdata</code></ulink></entry>
  664. <entry>
  665. <ulink url="http://www.php.net/manual/en/ref.ctype.php"><code>ctype</code></ulink>
  666. ( <ulink url="http://framework.zend.com/manual/en/zend.gdata.html"><code>Zend_Gdata_App</code></ulink> / Závislost )
  667. <ulink url="http://www.php.net/manual/en/ref.dom.php"><code>dom</code></ulink>
  668. ( Závislost )
  669. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  670. ( Závislost )
  671. </entry>
  672. </row>
  673. <row>
  674. <entry><ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http</code></ulink></entry>
  675. <entry>
  676. <ulink url="http://www.php.net/manual/en/ref.ctype.php"><code>ctype</code></ulink>
  677. ( <ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http_Client</code></ulink> / Závislost )
  678. <ulink url="http://www.php.net/manual/en/ref.curl.php"><code>curl</code></ulink>
  679. ( <ulink url="http://framework.zend.com/manual/en/zend.http.client.adapters.html"><code>Zend_Http_Client_Adapter_Curl</code></ulink> / Závislost )
  680. <ulink url="http://www.php.net/manual/en/ref.mime-magic.php"><code>mime_magic</code></ulink>
  681. ( <ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http_Client</code></ulink> / Závislost )
  682. </entry>
  683. </row>
  684. <row>
  685. <entry><ulink url="http://framework.zend.com/manual/en/zend.json.html"><code>Zend_Json</code></ulink></entry>
  686. <entry>
  687. <ulink url="http://www.php.net/manual/en/ref.json.php"><code>json</code></ulink>
  688. ( Volitelné )
  689. <ulink url="http://www.php.net/manual/en/language.oop5.reflection.php"><code>Reflection</code></ulink>
  690. ( Závislost )
  691. </entry>
  692. </row>
  693. <row>
  694. <entry><ulink url="http://framework.zend.com/manual/en/zend.loader.html"><code>Zend_Loader</code></ulink></entry>
  695. <entry>---</entry>
  696. </row>
  697. <row>
  698. <entry><ulink url="http://framework.zend.com/manual/en/zend.locale.html"><code>Zend_Locale</code></ulink></entry>
  699. <entry>
  700. <ulink url="http://www.php.net/manual/en/ref.bc.php"><code>bcmath</code></ulink>
  701. ( <ulink url="http://framework.zend.com/manual/en/zend.locale.html"><code>Zend_Locale_Math</code></ulink> / Volitelné )
  702. <ulink url="http://www.php.net/manual/en/ref.iconv.php"><code>iconv</code></ulink>
  703. ( <ulink url="http://framework.zend.com/manual/en/zend.locale.parsing.html"><code>Zend_Locale_Format</code></ulink> / Závislost )
  704. </entry>
  705. </row>
  706. <row>
  707. <entry><ulink url="http://framework.zend.com/manual/en/zend.log.html"><code>Zend_Log</code></ulink></entry>
  708. <entry>
  709. <ulink url="http://www.php.net/manual/en/ref.dom.php"><code>dom</code></ulink>
  710. ( <ulink url="http://framework.zend.com/manual/en/zend.log.formatters.html"><code>Zend_Log_Formatter_Xml</code></ulink> / Závislost )
  711. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  712. ( <ulink url="http://framework.zend.com/manual/en/zend.log.formatters.html"><code>Zend_Log_Formatter_Xml</code></ulink> / Závislost )
  713. <ulink url="http://www.php.net/manual/en/language.oop5.reflection.php"><code>Reflection</code></ulink>
  714. ( Závislost )
  715. </entry>
  716. </row>
  717. <row>
  718. <entry><ulink url="http://framework.zend.com/manual/en/zend.mail.html"><code>Zend_Mail</code></ulink></entry>
  719. <entry>
  720. <ulink url="http://www.php.net/manual/en/ref.posix.php"><code>posix</code></ulink>
  721. ( Volitelné )
  722. </entry>
  723. </row>
  724. <row>
  725. <entry><ulink url="http://framework.zend.com/manual/en/zend.measure.html"><code>Zend_Measure</code></ulink></entry>
  726. <entry>---</entry>
  727. </row>
  728. <row>
  729. <entry><ulink url="http://framework.zend.com/manual/en/zend.memory.html"><code>Zend_Memory</code></ulink></entry>
  730. <entry>---</entry>
  731. </row>
  732. <row>
  733. <entry><ulink url="http://framework.zend.com/manual/en/zend.mime.html"><code>Zend_Mime</code></ulink></entry>
  734. <entry>
  735. <ulink url="http://www.php.net/manual/en/ref.iconv.php"><code>iconv</code></ulink>
  736. ( <ulink url="http://framework.zend.com/manual/en/zend.mime.html"><code>Zend_Mime_Decode</code></ulink> / Závislost )
  737. </entry>
  738. </row>
  739. <row>
  740. <entry><ulink url="http://framework.zend.com/manual/en/zend.pdf.html"><code>Zend_Pdf</code></ulink></entry>
  741. <entry>
  742. <ulink url="http://www.php.net/manual/en/ref.ctype.php"><code>ctype</code></ulink>
  743. ( Závislost )
  744. <ulink url="http://www.php.net/manual/en/ref.image.php"><code>gd</code></ulink>
  745. ( Závislost )
  746. <ulink url="http://www.php.net/manual/en/ref.iconv.php"><code>iconv</code></ulink>
  747. ( Závislost )
  748. <ulink url="http://www.php.net/manual/en/ref.zlib.php"><code>zlib</code></ulink>
  749. ( Závislost )
  750. </entry>
  751. </row>
  752. <row>
  753. <entry><ulink url="http://framework.zend.com/manual/en/zend.registry.html"><code>Zend_Registry</code></ulink></entry>
  754. <entry>---</entry>
  755. </row>
  756. <row>
  757. <entry>Zend_Request</entry>
  758. <entry>---</entry>
  759. </row>
  760. <row>
  761. <entry><ulink url="http://framework.zend.com/manual/en/zend.rest.html"><code>Zend_Rest</code></ulink></entry>
  762. <entry>
  763. <ulink url="http://www.php.net/manual/en/ref.ctype.php"><code>ctype</code></ulink>
  764. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.client.html"><code>Zend_Rest_Client</code></ulink> / Závislost )
  765. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink> / Závislost )
  766. <ulink url="http://www.php.net/manual/en/ref.dom.php"><code>dom</code></ulink>
  767. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink> / Závislost )
  768. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  769. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.client.html"><code>Zend_Rest_Client</code></ulink> / Závislost )
  770. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink> / Závislost )
  771. <ulink url="http://www.php.net/manual/en/language.oop5.reflection.php"><code>Reflection</code></ulink>
  772. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.server.html"><code>Zend_Rest_Server</code></ulink> / Závislost )
  773. <ulink url="http://www.php.net/manual/en/ref.simplexml.php"><code>SimpleXML</code></ulink>
  774. ( <ulink url="http://framework.zend.com/manual/en/zend.rest.client.html"><code>Zend_Rest_Client</code></ulink> / Závislost )
  775. </entry>
  776. </row>
  777. <row>
  778. <entry><ulink url="http://framework.zend.com/manual/en/zend.search.lucene.html"><code>Zend_Search_Lucene</code></ulink></entry>
  779. <entry>
  780. <ulink url="http://www.php.net/manual/en/ref.ctype.php"><code>ctype</code></ulink>
  781. ( Závislost )
  782. <ulink url="http://pecl.php.net/package/Bitset"><code>bitset</code></ulink>
  783. ( Volitelné )
  784. <ulink url="http://www.php.net/manual/en/ref.dom.php"><code>dom</code></ulink>
  785. ( Závislost )
  786. <ulink url="http://www.php.net/manual/en/ref.iconv.php"><code>iconv</code></ulink>
  787. ( Závislost )
  788. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  789. ( Závislost )
  790. </entry>
  791. </row>
  792. <row>
  793. <entry><ulink url="http://framework.zend.com/manual/en/zend.server.reflection.html"><code>Zend_Server_Reflection</code></ulink></entry>
  794. <entry>
  795. <ulink url="http://www.php.net/manual/en/language.oop5.reflection.php"><code>Reflection</code></ulink>
  796. ( Závislost )
  797. </entry>
  798. </row>
  799. <row>
  800. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.akismet.html"><code>Zend_Service_Akismet</code></ulink></entry>
  801. <entry>---</entry>
  802. </row>
  803. <row>
  804. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.amazon.html"><code>Zend_Service_Amazon</code></ulink></entry>
  805. <entry>
  806. <ulink url="http://www.php.net/manual/en/ref.dom.php"><code>dom</code></ulink>
  807. ( Závislost )
  808. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  809. ( Závislost )
  810. </entry>
  811. </row>
  812. <row>
  813. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.audioscrobbler.html"><code>Zend_Service_Audioscrobbler</code></ulink></entry>
  814. <entry>
  815. <ulink url="http://www.php.net/manual/en/ref.iconv.php"><code>iconv</code></ulink>
  816. ( Závislost )
  817. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  818. ( Závislost )
  819. <ulink url="http://www.php.net/manual/en/ref.simplexml.php"><code>SimpleXML</code></ulink>
  820. ( Závislost )
  821. </entry>
  822. </row>
  823. <row>
  824. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.delicious.html"><code>Zend_Service_Delicious</code></ulink></entry>
  825. <entry>
  826. <ulink url="http://www.php.net/manual/en/ref.dom.php"><code>dom</code></ulink>
  827. ( Závislost )
  828. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  829. ( Závislost )
  830. </entry>
  831. </row>
  832. <row>
  833. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.flickr.html"><code>Zend_Service_Flickr</code></ulink></entry>
  834. <entry>
  835. <ulink url="http://www.php.net/manual/en/ref.dom.php"><code>dom</code></ulink>
  836. ( Závislost )
  837. <ulink url="http://www.php.net/manual/en/ref.iconv.php"><code>iconv</code></ulink>
  838. ( Závislost )
  839. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  840. ( Závislost )
  841. </entry>
  842. </row>
  843. <row>
  844. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.strikeiron.html"><code>Zend_Service_StrikeIron</code></ulink></entry>
  845. <entry>
  846. <ulink url="http://www.php.net/manual/en/ref.soap.php"><code>soap</code></ulink>
  847. ( Závislost )
  848. </entry>
  849. </row>
  850. <row>
  851. <entry><ulink url="http://framework.zend.com/manual/en/zend.service.yahoo.html"><code>Zend_Service_Yahoo</code></ulink></entry>
  852. <entry>
  853. <ulink url="http://www.php.net/manual/en/ref.dom.php"><code>dom</code></ulink>
  854. ( Závislost )
  855. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  856. ( Závislost )
  857. </entry>
  858. </row>
  859. <row>
  860. <entry><ulink url="http://framework.zend.com/manual/en/zend.session.html"><code>Zend_Session</code></ulink></entry>
  861. <entry>
  862. <ulink url="http://www.php.net/manual/en/ref.session.php"><code>session</code></ulink>
  863. ( Závislost )
  864. </entry>
  865. </row>
  866. <row>
  867. <entry><ulink url="http://framework.zend.com/manual/en/zend.translate.html"><code>Zend_Translate</code></ulink></entry>
  868. <entry>
  869. <ulink url="http://www.php.net/manual/en/ref.xml.php"><code>xml</code></ulink>
  870. ( <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Qt</code></ulink> / Závislost )
  871. ( <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Tmx</code></ulink> / Závislost )
  872. ( <ulink url="http://framework.zend.com/manual/en/zend.translate.adapter.html"><code>Zend_Translate_Adapter_Xliff</code></ulink> / Závislost )
  873. </entry>
  874. </row>
  875. <row>
  876. <entry><ulink url="http://framework.zend.com/manual/en/zend.uri.html"><code>Zend_Uri</code></ulink></entry>
  877. <entry>
  878. <ulink url="http://www.php.net/manual/en/ref.ctype.php"><code>ctype</code></ulink>
  879. ( Závislost )
  880. </entry>
  881. </row>
  882. <row>
  883. <entry><ulink url="http://framework.zend.com/manual/en/zend.validate.html"><code>Zend_Validate</code></ulink></entry>
  884. <entry>
  885. <ulink url="http://www.php.net/manual/en/ref.ctype.php"><code>ctype</code></ulink>
  886. ( Závislost )
  887. <ulink url="http://www.php.net/manual/en/language.oop5.reflection.php"><code>Reflection</code></ulink>
  888. ( Závislost )
  889. </entry>
  890. </row>
  891. <row>
  892. <entry><ulink url="http://framework.zend.com/manual/en/zend.version.html"><code>Zend_Version</code></ulink></entry>
  893. <entry>---</entry>
  894. </row>
  895. <row>
  896. <entry><ulink url="http://framework.zend.com/manual/en/zend.view.html"><code>Zend_View</code></ulink></entry>
  897. <entry>
  898. <ulink url="http://www.php.net/manual/en/language.oop5.reflection.php"><code>Reflection</code></ulink>
  899. ( Závislost )
  900. </entry>
  901. </row>
  902. <row>
  903. <entry><ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.html"><code>Zend_XmlRpc</code></ulink></entry>
  904. <entry>
  905. <ulink url="http://www.php.net/manual/en/ref.dom.php"><code>dom</code></ulink>
  906. ( Závislost )
  907. <ulink url="http://www.php.net/manual/en/ref.iconv.php"><code>iconv</code></ulink>
  908. ( <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.client.html"><code>Zend_XmlRpc_Client</code></ulink> / Závislost )
  909. <ulink url="http://www.php.net/manual/en/ref.libxml.php"><code>libxml</code></ulink>
  910. ( Závislost )
  911. <ulink url="http://www.php.net/manual/en/language.oop5.reflection.php"><code>Reflection</code></ulink>
  912. ( <ulink url="http://framework.zend.com/manual/en/zend.xmlrpc.server.html"><code>Zend_XmlRpc_Server</code></ulink> / Závislost )
  913. <ulink url="http://www.php.net/manual/en/ref.simplexml.php"><code>SimpleXML</code></ulink>
  914. ( Závislost )
  915. </entry>
  916. </row>
  917. </tbody>
  918. </tgroup>
  919. </table>
  920. </sect1>
  921. </appendix>
  922. <!--
  923. vim:se ts=4 sw=4 et:
  924. -->