Publisher does not support the Fluid field type. Please do not contact asking when support will be available.

If you purchased an add-on from expressionengine.com, be sure to visit boldminded.com/claim to add the license to your account here on boldminded.com.

Ticket: Publisher_channel_categories.php needs updating for EE4

Status Resolved
Add-on / Version Publisher 2.7.10
Severity
EE Version 4.x

BoldMinded (Brian)

May 05, 2018

Need to update Publisher_channel_categories.php with the changes in EE4. Create a Publisher_channel_categories_ee4.php version and load it conditionally in the following methods.

public function channel_module_categories_start()
    {
        ee()->load->library('Publisher_channel_categories');
        return ee()->publisher_channel_categories->categories();
    }

    /**
     * @return string
     */
    public function channel_module_category_heading_start()
    {
        ee()->load->library('Publisher_channel_categories');
        return ee()->publisher_channel_categories->category_heading();
    }

 

#1

BoldMinded (Brian)

Fixed in 2.8

Login to reply