Subversion Repositories eFlore/Applications.cel

Rev

Rev 1328 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1328 Rev 3021
Line 201... Line 201...
201
     * @todo    Clarify overlap with getContent()
201
     * @todo    Clarify overlap with getContent()
202
     * @param    string    $method    The name of the text construct we want
202
     * @param    string    $method    The name of the text construct we want
203
     * @param    array     $arguments    An array which we hope gives a 'param'
203
     * @param    array     $arguments    An array which we hope gives a 'param'
204
     * @return    string
204
     * @return    string
205
     */
205
     */
206
    protected function getText($method, $arguments) {
206
    protected function getText($method, $arguments = Array()) {
207
        $offset = empty($arguments[0]) ? 0: $arguments[0];
207
        $offset = empty($arguments[0]) ? 0: $arguments[0];
208
        $attribute = empty($arguments[1]) ? false : $arguments[1];
208
        $attribute = empty($arguments[1]) ? false : $arguments[1];
209
        $tags = $this->model->getElementsByTagName($method);
209
        $tags = $this->model->getElementsByTagName($method);
Line 210... Line 210...
210
 
210