2
0
Просмотр исходного кода

DOC-ES UPDATE

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@23482 44c647ce-9c0f-0410-b52a-842ac1e357ba
benjamin-gonzales 15 лет назад
Родитель
Сommit
1bcdabdbc4

+ 12 - 1
documentation/manual/es/module_specs/Zend_Application-AvailableResources-Db.xml

@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-    <!-- EN-Revision: 20763 -->
+    <!-- EN-Revision: 22741 -->
     <!-- Reviewed: no -->
 <sect2 id="zend.application.available-resources.db">
     <title>Zend_Application_Resource_Db</title>
@@ -53,6 +53,14 @@
                 por defecto.
             </para>
         </listitem>
+        
+             <listitem>
+            <para>
+                <emphasis><property>defaultMetadataCache</property></emphasis>: the name of the
+                cache template or an instance of <classname>Zend_Cache_Core</classname> to use as
+                metadata cache for <classname>Zend_Db_Table</classname>.
+            </para>
+        </listitem>
     </itemizedlist>
 
     <example id="zend.application.available-resources.db.configExample">
@@ -72,6 +80,9 @@ resources.db.params.username = "webuser"
 resources.db.params.password = "XXXXXXX"
 resources.db.params.dbname = "test"
 resources.db.isDefaultTableAdapter = true
+
+; Optionally you can also the cache template to use for metadata caching:
+resources.db.defaultMetadataCache = "database"
 ]]></programlisting>
     </example>
 

+ 5 - 1
documentation/manual/es/module_specs/Zend_Application-AvailableResources-Frontcontroller.xml

@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-    <!-- EN-Revision: 20885 -->
+    <!-- EN-Revision: 22741 -->
     <!-- Reviewed: no -->
 <sect2 id="zend.application.available-resources.frontcontroller">
     <title>Zend_Application_Resource_Frontcontroller</title>
@@ -168,6 +168,10 @@ resources.frontController.plugins.baz.class = "My_Plugin_Baz"
 resources.frontController.plugins.baz.stackIndex = 123
 resources.frontController.returnresponse = 1
 resources.frontController.env = APPLICATION_ENV
+
+; The following proxies to:
+; Zend_Controller_Action_HelperBroker::addPath('Helper_Path', $helperPrefix);
+resources.frontController.actionHelperPaths.HELPER_Prefix = "My/Helper/Path"
 ]]></programlisting>
     </example>
     <example id="zend.application.available-resources.frontcontroller.frontControllerPropertyExample">