/home/altere25/usaigc.com/wp-content/plugins/wpdatatables/source
Edit: /home/altere25/usaigc.com/wp-content/plugins/wpdatatables/source/class.image.wpdatacolumn.php (1164B)
_dataType = 'icon';
}
/**
* @param $content
* @return mixed|string
*/
public function prepareCellOutput($content)
{
$content = apply_filters('wpdatatables_filter_image_cell_before_formatting', $content, $this->getParentTable()->getWpId());
if (empty($content)) {
return '';
}
if (FALSE !== strpos($content, '||')) {
list($image, $link) = explode('||', $content);
$formattedValue = "

";
} else {
$formattedValue = "

";
}
return apply_filters('wpdatatables_filter_image_cell', $formattedValue, $this->getParentTable()->getWpId());
}
}