Skip to content

Commit c16a633

Browse files
committed
initial translation in oci8/ocicollection
1 parent f5009f4 commit c16a633

File tree

8 files changed

+744
-0
lines changed

8 files changed

+744
-0
lines changed
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- EN-Revision: deb6ee36001e5d315c92780db3a6cf64fe4f70bf Maintainer: leonardolara Status: ready -->
3+
<refentry xml:id="ocicollection.append" xmlns="http://docbook.org/ns/docbook">
4+
<refnamediv>
5+
<refname>OCICollection::append</refname>
6+
<refpurpose>Adiciona elemento à coleção</refpurpose>
7+
</refnamediv>
8+
9+
<refsect1 role="description">
10+
&reftitle.description;
11+
<methodsynopsis role="OCICollection">
12+
<modifier>public</modifier> <type>bool</type><methodname>OCICollection::append</methodname>
13+
<methodparam><type>string</type><parameter>value</parameter></methodparam>
14+
</methodsynopsis>
15+
<para>
16+
Acrescenta elemento ao final da coleção.
17+
</para>
18+
</refsect1>
19+
20+
<refsect1 role="parameters">
21+
&reftitle.parameters;
22+
<para>
23+
<variablelist>
24+
<varlistentry>
25+
<term><parameter>value</parameter></term>
26+
<listitem>
27+
<para>
28+
O valor a ser adicionado à coleção.
29+
</para>
30+
</listitem>
31+
</varlistentry>
32+
</variablelist>
33+
</para>
34+
</refsect1>
35+
36+
<refsect1 role="returnvalues">
37+
&reftitle.returnvalues;
38+
<para>
39+
&return.success;
40+
</para>
41+
</refsect1>
42+
43+
<refsect1 role="changelog">
44+
&reftitle.changelog;
45+
<informaltable>
46+
<tgroup cols="2">
47+
<thead>
48+
<row>
49+
<entry>&Version;</entry>
50+
<entry>&Description;</entry>
51+
</row>
52+
</thead>
53+
<tbody>
54+
<row>
55+
<entry>8.0.0, PECL OCI8 3.0.0</entry>
56+
<entry>
57+
A classe <classname>OCI-Collection</classname> foi renomeada para
58+
<classname>OCICollection</classname> para se alinhar aos padrões de nomenclatura PHP.
59+
</entry>
60+
</row>
61+
</tbody>
62+
</tgroup>
63+
</informaltable>
64+
</refsect1>
65+
66+
<refsect1 role="seealso">
67+
&reftitle.seealso;
68+
<para>
69+
<simplelist>
70+
<member><xref linkend="ocicollection.assign"/></member>
71+
</simplelist>
72+
</para>
73+
</refsect1>
74+
75+
</refentry>
76+
<!-- Keep this comment at the end of the file
77+
Local variables:
78+
mode: sgml
79+
sgml-omittag:t
80+
sgml-shorttag:t
81+
sgml-minimize-attributes:nil
82+
sgml-always-quote-attributes:t
83+
sgml-indent-step:1
84+
sgml-indent-data:t
85+
indent-tabs-mode:nil
86+
sgml-parent-document:nil
87+
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
88+
sgml-exposed-tags:nil
89+
sgml-local-catalogs:nil
90+
sgml-local-ecat-files:nil
91+
End:
92+
vim600: syn=xml fen fdm=syntax fdl=2 si
93+
vim: et tw=78 syn=sgml
94+
vi: ts=1 sw=1
95+
-->
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- EN-Revision: deb6ee36001e5d315c92780db3a6cf64fe4f70bf Maintainer: leonardolara Status: ready -->
3+
<refentry xml:id="ocicollection.assign" xmlns="http://docbook.org/ns/docbook">
4+
<refnamediv>
5+
<refname>OCICollection::assign</refname>
6+
<refpurpose>Atribui um valor de outra coleção existente a esta coleção </refpurpose>
7+
</refnamediv>
8+
9+
<refsect1 role="description">
10+
&reftitle.description;
11+
<methodsynopsis role="OCICollection">
12+
<modifier>public</modifier> <type>bool</type><methodname>OCICollection::assign</methodname>
13+
<methodparam><type>OCICollection</type><parameter>from</parameter></methodparam>
14+
</methodsynopsis>
15+
<para>
16+
Atribui um valor à coleção de outra coleção
17+
previamente criada. Ambas as coleções devem ser criadas com
18+
<function>oci_new_collection</function> antes de serem usadas.
19+
</para>
20+
</refsect1>
21+
22+
<refsect1 role="parameters">
23+
&reftitle.parameters;
24+
<para>
25+
<variablelist>
26+
<varlistentry>
27+
<term><parameter>from</parameter></term>
28+
<listitem>
29+
<para>
30+
Uma instância de OCICollection.
31+
</para>
32+
</listitem>
33+
</varlistentry>
34+
</variablelist>
35+
</para>
36+
</refsect1>
37+
38+
<refsect1 role="returnvalues">
39+
&reftitle.returnvalues;
40+
<para>
41+
&return.success;
42+
</para>
43+
</refsect1>
44+
45+
<refsect1 role="changelog">
46+
&reftitle.changelog;
47+
<informaltable>
48+
<tgroup cols="2">
49+
<thead>
50+
<row>
51+
<entry>&Version;</entry>
52+
<entry>&Description;</entry>
53+
</row>
54+
</thead>
55+
<tbody>
56+
<row>
57+
<entry>8.0.0, PECL OCI8 3.0.0</entry>
58+
<entry>
59+
A classe <classname>OCI-Collection</classname> foi renomeada para
60+
<classname>OCICollection</classname> para se alinhar aos padrões de nomenclatura PHP.
61+
</entry>
62+
</row>
63+
</tbody>
64+
</tgroup>
65+
</informaltable>
66+
</refsect1>
67+
68+
<refsect1 role="seealso">
69+
&reftitle.seealso;
70+
<para>
71+
<simplelist>
72+
<member><xref linkend="ocicollection.append"/></member>
73+
</simplelist>
74+
</para>
75+
</refsect1>
76+
77+
</refentry>
78+
<!-- Keep this comment at the end of the file
79+
Local variables:
80+
mode: sgml
81+
sgml-omittag:t
82+
sgml-shorttag:t
83+
sgml-minimize-attributes:nil
84+
sgml-always-quote-attributes:t
85+
sgml-indent-step:1
86+
sgml-indent-data:t
87+
indent-tabs-mode:nil
88+
sgml-parent-document:nil
89+
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
90+
sgml-exposed-tags:nil
91+
sgml-local-catalogs:nil
92+
sgml-local-ecat-files:nil
93+
End:
94+
vim600: syn=xml fen fdm=syntax fdl=2 si
95+
vim: et tw=78 syn=sgml
96+
vi: ts=1 sw=1
97+
-->
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- EN-Revision: deb6ee36001e5d315c92780db3a6cf64fe4f70bf Maintainer: leonardolara Status: ready -->
3+
<refentry xml:id="ocicollection.assignelem" xmlns="http://docbook.org/ns/docbook">
4+
<refnamediv>
5+
<refname>OCICollection::assignElem</refname>
6+
<refpurpose>Atribui um valor ao elemento da coleção</refpurpose>
7+
</refnamediv>
8+
9+
<refsect1 role="description">
10+
&reftitle.description;
11+
<methodsynopsis role="OCICollection">
12+
<modifier>public</modifier> <type>bool</type><methodname>OCICollection::assignElem</methodname>
13+
<methodparam><type>int</type><parameter>index</parameter></methodparam>
14+
<methodparam><type>string</type><parameter>value</parameter></methodparam>
15+
</methodsynopsis>
16+
<para>
17+
Atribui um valor ao elemento com índice <parameter>index</parameter>.
18+
</para>
19+
</refsect1>
20+
21+
<refsect1 role="parameters">
22+
&reftitle.parameters;
23+
<para>
24+
<variablelist>
25+
<varlistentry>
26+
<term><parameter>index</parameter></term>
27+
<listitem>
28+
<para>
29+
O índice do elemento. O primeiro índice é 0.
30+
</para>
31+
</listitem>
32+
</varlistentry>
33+
<varlistentry>
34+
<term><parameter>value</parameter></term>
35+
<listitem>
36+
<para>
37+
Pode ser uma string ou um número.
38+
</para>
39+
</listitem>
40+
</varlistentry>
41+
</variablelist>
42+
</para>
43+
</refsect1>
44+
45+
<refsect1 role="returnvalues">
46+
&reftitle.returnvalues;
47+
<para>
48+
&return.success;
49+
</para>
50+
</refsect1>
51+
52+
<refsect1 role="changelog">
53+
&reftitle.changelog;
54+
<informaltable>
55+
<tgroup cols="2">
56+
<thead>
57+
<row>
58+
<entry>&Version;</entry>
59+
<entry>&Description;</entry>
60+
</row>
61+
</thead>
62+
<tbody>
63+
<row>
64+
<entry>8.0.0, PECL OCI8 3.0.0</entry>
65+
<entry>
66+
A classe <classname>OCI-Collection</classname> foi renomeada para
67+
<classname>OCICollection</classname> para se alinhar aos padrões de nomenclatura PHP.
68+
</entry>
69+
</row>
70+
</tbody>
71+
</tgroup>
72+
</informaltable>
73+
</refsect1>
74+
75+
<refsect1 role="seealso">
76+
&reftitle.seealso;
77+
<para>
78+
<simplelist>
79+
<member><xref linkend="ocicollection.getelem"/></member>
80+
</simplelist>
81+
</para>
82+
</refsect1>
83+
84+
</refentry>
85+
<!-- Keep this comment at the end of the file
86+
Local variables:
87+
mode: sgml
88+
sgml-omittag:t
89+
sgml-shorttag:t
90+
sgml-minimize-attributes:nil
91+
sgml-always-quote-attributes:t
92+
sgml-indent-step:1
93+
sgml-indent-data:t
94+
indent-tabs-mode:nil
95+
sgml-parent-document:nil
96+
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
97+
sgml-exposed-tags:nil
98+
sgml-local-catalogs:nil
99+
sgml-local-ecat-files:nil
100+
End:
101+
vim600: syn=xml fen fdm=syntax fdl=2 si
102+
vim: et tw=78 syn=sgml
103+
vi: ts=1 sw=1
104+
-->

reference/oci8/ocicollection/free.xml

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- EN-Revision: deb6ee36001e5d315c92780db3a6cf64fe4f70bf Maintainer: leonardolara Status: ready -->
3+
<refentry xml:id="ocicollection.free" xmlns="http://docbook.org/ns/docbook">
4+
<refnamediv>
5+
<refname>OCICollection::free</refname>
6+
<refpurpose>Libera os recursos associados ao objeto de coleção</refpurpose>
7+
</refnamediv>
8+
9+
<refsect1 role="description">
10+
&reftitle.description;
11+
<methodsynopsis role="OCICollection">
12+
<modifier>public</modifier> <type>bool</type><methodname>OCICollection::free</methodname>
13+
<void/>
14+
</methodsynopsis>
15+
<para>
16+
Libera os recursos associados ao objeto de coleção.
17+
</para>
18+
</refsect1>
19+
20+
<refsect1 role="parameters">
21+
&reftitle.parameters;
22+
&no.function.parameters;
23+
</refsect1>
24+
25+
<refsect1 role="returnvalues">
26+
&reftitle.returnvalues;
27+
<para>
28+
&return.success;
29+
</para>
30+
</refsect1>
31+
32+
<refsect1 role="changelog">
33+
&reftitle.changelog;
34+
<informaltable>
35+
<tgroup cols="2">
36+
<thead>
37+
<row>
38+
<entry>&Version;</entry>
39+
<entry>&Description;</entry>
40+
</row>
41+
</thead>
42+
<tbody>
43+
<row>
44+
<entry>8.0.0, PECL OCI8 3.0.0</entry>
45+
<entry>
46+
A classe <classname>OCI-Collection</classname> foi renomeada para
47+
<classname>OCICollection</classname> para se alinhar aos padrões de nomenclatura PHP.
48+
</entry>
49+
</row>
50+
</tbody>
51+
</tgroup>
52+
</informaltable>
53+
</refsect1>
54+
55+
<refsect1 role="seealso">
56+
&reftitle.seealso;
57+
<para>
58+
<simplelist>
59+
<member><xref linkend="function.oci-new-collection"/></member>
60+
</simplelist>
61+
</para>
62+
</refsect1>
63+
64+
</refentry>
65+
<!-- Keep this comment at the end of the file
66+
Local variables:
67+
mode: sgml
68+
sgml-omittag:t
69+
sgml-shorttag:t
70+
sgml-minimize-attributes:nil
71+
sgml-always-quote-attributes:t
72+
sgml-indent-step:1
73+
sgml-indent-data:t
74+
indent-tabs-mode:nil
75+
sgml-parent-document:nil
76+
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
77+
sgml-exposed-tags:nil
78+
sgml-local-catalogs:nil
79+
sgml-local-ecat-files:nil
80+
End:
81+
vim600: syn=xml fen fdm=syntax fdl=2 si
82+
vim: et tw=78 syn=sgml
83+
vi: ts=1 sw=1
84+
-->

0 commit comments

Comments
 (0)