2014-09-05 07:44:07 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 08:46:15 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-12-21 20:21:51 +00:00
|
|
|
<appendix xml:id="runkit.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2005-05-01 04:55:00 +00:00
|
|
|
&reftitle.constants;
|
|
|
|
&extension.constants;
|
|
|
|
<variablelist>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.runkit-import-functions">
|
2005-05-01 04:55:00 +00:00
|
|
|
<term>
|
|
|
|
<constant>RUNKIT_IMPORT_FUNCTIONS</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2005-05-02 19:50:53 +00:00
|
|
|
<function>runkit_import</function> flag indicating
|
|
|
|
that normal functions should be imported from the
|
|
|
|
specified file.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.runkit-import-class-methods">
|
2005-05-01 04:55:00 +00:00
|
|
|
<term>
|
|
|
|
<constant>RUNKIT_IMPORT_CLASS_METHODS</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2005-05-02 19:50:53 +00:00
|
|
|
<function>runkit_import</function> flag indicating
|
|
|
|
that class methods should be imported from the
|
|
|
|
specified file.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.runkit-import-class-consts">
|
2005-05-01 04:55:00 +00:00
|
|
|
<term>
|
|
|
|
<constant>RUNKIT_IMPORT_CLASS_CONSTS</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2005-05-02 19:50:53 +00:00
|
|
|
<function>runkit_import</function> flag indicating
|
|
|
|
that class constants should be imported from the
|
|
|
|
specified file. Note that this flag is only meaningful
|
|
|
|
in PHP versions 5.1.0 and above.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.runkit-import-class-props">
|
2005-05-01 04:55:00 +00:00
|
|
|
<term>
|
|
|
|
<constant>RUNKIT_IMPORT_CLASS_PROPS</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2005-05-02 19:50:53 +00:00
|
|
|
<function>runkit_import</function> flag indicating
|
|
|
|
that class standard properties should be imported
|
|
|
|
from the specified file.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2015-10-22 11:28:17 +00:00
|
|
|
<varlistentry xml:id="constant.runkit-import-class-static-props">
|
|
|
|
<term>
|
|
|
|
<constant>RUNKIT_IMPORT_CLASS_STATIC_PROPS</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
<function>runkit_import</function> flag indicating
|
|
|
|
that class static properties should be imported
|
|
|
|
from the specified file. Available since Runkit 1.0.1.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.runkit-import-classes">
|
2005-05-01 04:55:00 +00:00
|
|
|
<term>
|
|
|
|
<constant>RUNKIT_IMPORT_CLASSES</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2005-05-02 19:50:53 +00:00
|
|
|
<function>runkit_import</function> flag representing
|
|
|
|
a bitwise OR of the <constant>RUNKIT_IMPORT_CLASS_*</constant>
|
|
|
|
constants.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.runkit-import-override">
|
2005-05-01 04:55:00 +00:00
|
|
|
<term>
|
2015-10-22 11:28:17 +00:00
|
|
|
<constant>RUNKIT_IMPORT_OVERRIDE</constant>
|
2005-05-01 04:55:00 +00:00
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2005-05-02 19:50:53 +00:00
|
|
|
<function>runkit_import</function> flag indicating that
|
|
|
|
if any of the imported functions, methods, constants,
|
|
|
|
or properties already exist, they should be replaced with
|
|
|
|
the new definitions. If this flag is not set, then any
|
|
|
|
imported definitions which already exist will be discarded.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.runkit-acc-public">
|
2005-05-01 04:55:00 +00:00
|
|
|
<term>
|
|
|
|
<constant>RUNKIT_ACC_PUBLIC</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2015-10-22 11:28:17 +00:00
|
|
|
PHP 5 specific flag to <function>runkit_method_add</function> and <function>runkit_method_redefine</function>
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.runkit-acc-protected">
|
2005-05-01 04:55:00 +00:00
|
|
|
<term>
|
|
|
|
<constant>RUNKIT_ACC_PROTECTED</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2015-10-22 11:28:17 +00:00
|
|
|
PHP 5 specific flag to <function>runkit_method_add</function> and <function>runkit_method_redefine</function>
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.runkit-acc-private">
|
2005-05-01 04:55:00 +00:00
|
|
|
<term>
|
|
|
|
<constant>RUNKIT_ACC_PRIVATE</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2015-10-22 11:28:17 +00:00
|
|
|
PHP 5 specific flag to <function>runkit_method_add</function> and <function>runkit_method_redefine</function>
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry xml:id="constant.runkit-acc-static">
|
|
|
|
<term>
|
|
|
|
<constant>RUNKIT_ACC_STATIC</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
PHP 5 specific flag to <function>runkit_method_add</function> and <function>runkit_method_redefine</function>. Available since Runkit 1.0.1.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term>
|
|
|
|
<constant>CLASSKIT_ACC_PUBLIC</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2007-02-15 08:12:20 +00:00
|
|
|
PHP 5 specific flag to <function>classkit_method_add</function>
|
2005-05-01 09:08:13 +00:00
|
|
|
Only defined when classkit compatibility is enabled.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term>
|
|
|
|
<constant>CLASSKIT_ACC_PROTECTED</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2007-02-15 08:12:20 +00:00
|
|
|
PHP 5 specific flag to <function>classkit_method_add</function>
|
2005-06-15 01:16:16 +00:00
|
|
|
Only defined when classkit compatibility is enabled.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term>
|
|
|
|
<constant>CLASSKIT_ACC_PRIVATE</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2007-02-15 08:12:20 +00:00
|
|
|
PHP 5 specific flag to <function>classkit_method_add</function>
|
2005-06-15 01:16:16 +00:00
|
|
|
Only defined when classkit compatibility is enabled.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term>
|
|
|
|
<constant>CLASSKIT_AGGREGATE_OVERRIDE</constant>
|
|
|
|
(<type>integer</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
2007-02-15 08:12:20 +00:00
|
|
|
PHP 5 specific flag to <function>classkit_import</function>
|
2005-06-15 01:16:16 +00:00
|
|
|
Only defined when classkit compatibility is enabled.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
2012-02-28 13:22:09 +00:00
|
|
|
<varlistentry xml:id="constant.runkit-version">
|
2005-05-01 04:55:00 +00:00
|
|
|
<term>
|
|
|
|
<constant>RUNKIT_VERSION</constant>
|
|
|
|
(<type>string</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Defined to the current version of the runkit package.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term>
|
|
|
|
<constant>CLASSKIT_VERSION</constant>
|
|
|
|
(<type>string</type>)
|
|
|
|
</term>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
Defined to the current version of the runkit package.
|
2005-06-15 01:16:16 +00:00
|
|
|
Only defined when classkit compatibility is enabled.
|
2005-05-01 04:55:00 +00:00
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
2007-12-21 20:21:51 +00:00
|
|
|
</appendix>
|
2005-05-01 04:55:00 +00:00
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2005-05-01 04:55:00 +00:00
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|