Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3667 Rev 3842
Line 382... Line 382...
382
     * Often, however, the 'description' element is used instead. We will offer that 
382
     * Often, however, the 'description' element is used instead. We will offer that 
383
     * as a fallback. Atom uses its own approach and overrides this method.
383
     * as a fallback. Atom uses its own approach and overrides this method.
384
     *
384
     *
385
     * @return  string|false
385
     * @return  string|false
386
     */
386
     */
387
    protected function getContent() {
387
    protected function getContent($method, $arguments = array()) {
388
        $options = array('encoded', 'description');
388
        $options = array('encoded', 'description');
389
        foreach ($options as $element) {
389
        foreach ($options as $element) {
390
            $test = $this->model->getElementsByTagName($element);
390
            $test = $this->model->getElementsByTagName($element);
391
            if ($test->length == 0) {
391
            if ($test->length == 0) {
392
                continue;
392
                continue;