1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="MessageFormatter" namespace="" name="MessageFormatter">
<constructor name="__construct" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Constructs a new Message Formatter">Object oriented style (method)</description>
<return type="void"/>
</docblock>
<parameter name="locale" optional="false" byreference="false" type="string"/>
<parameter name="pattern" optional="false" byreference="false" type="string"/>
</constructor>
<method name="create" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Constructs a new Message Formatter">Object oriented style (method)</description>
<return type="MessageFormatter"/>
</docblock>
<parameter name="locale" optional="false" byreference="false" type="string"/>
<parameter name="pattern" optional="false" byreference="false" type="string"/>
</method>
<method name="formatMessage" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Quick format message">Object oriented style</description>
<return type="string"/>
</docblock>
<parameter name="locale" optional="false" byreference="false" type="string"/>
<parameter name="pattern" optional="false" byreference="false" type="string"/>
<parameter name="args" optional="false" byreference="false" type="object" class="array"/>
</method>
<method name="format" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Format the message">Object oriented style</description>
<return type="string"/>
</docblock>
<parameter name="args" optional="false" byreference="false" type="object" class="array"/>
</method>
<method name="getErrorCode" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Get the error code from last operation">Object oriented style</description>
<return type="int"/>
</docblock>
</method>
<method name="getErrorMessage" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Get the error text from the last operation">Object oriented style</description>
<return type="string"/>
</docblock>
</method>
<method name="getLocale" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Get the locale for which the formatter was created">Object oriented style</description>
<return type="string"/>
</docblock>
</method>
<method name="getPattern" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Get the pattern used by the formatter">Object oriented style</description>
<return type="string"/>
</docblock>
</method>
<method name="parseMessage" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Quick parse input string">Object oriented style</description>
<return type="array"/>
</docblock>
<parameter name="locale" optional="false" byreference="false" type="string"/>
<parameter name="pattern" optional="false" byreference="false" type="string"/>
<parameter name="source" optional="false" byreference="false" type="string"/>
</method>
<method name="parse" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Parse input string according to pattern">Object oriented style</description>
<return type="array"/>
</docblock>
<parameter name="value" optional="false" byreference="false" type="string"/>
</method>
<method name="setPattern" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Set the pattern used by the formatter">Object oriented style</description>
<return type="bool"/>
</docblock>
<parameter name="pattern" optional="false" byreference="false" type="string"/>
</method>
</class>
|