Skip to:
Content

bbPress.org


Ignore:
Timestamp:
08/27/2017 11:24:00 PM (8 years ago)
Author:
johnjamesjacoby
Message:

Converter: more OOP, specifically for the BBCode parser.

This change introduces a bbcode_parser_properties array to the base converter, allowing custom BBCode parser properties to be passed into the parent method via the child, minimizing the amount of code in each individual forum converter.

Trunk, for 2.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/converters/phpBB.php

    r6573 r6670  
    2121     *
    2222     */
    23     function __construct() {
     23    public function __construct() {
    2424        parent::__construct();
    25         $this->setup_globals();
    2625    }
    2726
     
    3029     */
    3130    public function setup_globals() {
     31
     32        // Setup smiley URL & path
     33        $this->bbcode_parser_properties = array(
     34            'smiley_url' => false,
     35            'smiley_dir' => false
     36        );
    3237
    3338        /** Forum Section *****************************************************/
     
    832837
    833838    /**
    834      * Translate the forum type from phpBB v3.x numeric's to WordPress's strings.
     839     * Translate the forum type from phpBB v3.x numerics to WordPress's strings.
    835840     *
    836841     * @param int $status phpBB v3.x numeric forum type
     
    852857
    853858    /**
    854      * Translate the forum status from phpBB v3.x numeric's to WordPress's strings.
     859     * Translate the forum status from phpBB v3.x numerics to WordPress's strings.
    855860     *
    856861     * @param int $status phpBB v3.x numeric forum status
     
    872877
    873878    /**
    874      * Translate the topic status from phpBB v3.x numeric's to WordPress's strings.
     879     * Translate the topic status from phpBB v3.x numerics to WordPress's strings.
    875880     *
    876881     * @param int $status phpBB v3.x numeric topic status
     
    892897
    893898    /**
    894      * Translate the topic sticky status type from phpBB 3.x numeric's to WordPress's strings.
     899     * Translate the topic sticky status type from phpBB 3.x numerics to WordPress's strings.
    895900     *
    896901     * @param int $status phpBB 3.x numeric forum type
     
    10181023
    10191024        // Parse out any bbCodes in $field with the BBCode 'parser.php'
    1020         require_once bbpress()->admin->admin_dir . 'parser.php';
    1021         $bbcode = BBCode::getInstance();
    1022         $bbcode->enable_smileys = false;
    1023         $bbcode->smiley_regex   = false;
    1024         return html_entity_decode( $bbcode->Parse( $field ) );
     1025        return parent::callback_html( $field );
    10251026    }
    10261027}
Note: See TracChangeset for help on using the changeset viewer.