Inpsyde\MultilingualPress\Common\Admin\SitesListTableColumn::render_content PHP Method

render_content() public method

Renders the column content.
Since: 3.0.0
public render_content ( string $id, integer $site_id ) : boolean
$id string Column ID.
$site_id integer Site ID.
return boolean Whether or not the content was rendered successfully.
    public function render_content($id, $site_id)
    {
        if ($this->id === $id) {
            echo call_user_func($this->render_callback, $id, $site_id);
            return true;
        }
        return false;
    }