HEX
Server: Apache/2.4.65 (Debian)
System: Linux localhost 6.9.12 #1 SMP Tue May 5 14:23:20 UTC 2026 x86_64
User: www-data (33)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/wpdatatables/source/class.string.wpdatacolumn.php
<?php

defined('ABSPATH') or die("Cannot access pages directly.");

class StringWDTColumn extends WDTColumn
{

    protected $_dataType = 'string';
    protected $_jsDataType = 'string';

    public function __construct($properties = array())
    {
        parent::__construct($properties);
        $this->_dataType = 'string';
        $this->_foreignKeyRule = WDTTools::defineDefaultValue($properties, 'foreignKeyRule', null);
    }

    public function prepareCellOutput($content)
    {
        $content = apply_filters('wpdatatables_filter_string_cell_before_formatting', $content, $this->getParentTable()->getWpId());

        if (get_option('wdtParseShortcodes')) {
            if(!is_null($content))
                $content = do_shortcode($content);
        }
        return apply_filters('wpdatatables_filter_string_cell', $content, $this->getParentTable()->getWpId());
    }

}