Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
save_bvnghean.vn
/
wp-content
/
plugins
/
wpDataTables_v1.6.1
/
source
:
class.image.wpdatacolumn.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php class ImageWDTColumn extends WDTColumn { protected $_jsDataType = 'string'; protected $_dataType = 'string'; public function __construct( $properties = array () ) { parent::__construct( $properties ); $this->_dataType = 'icon'; } public function prepareCellOutput( $content ) { if( FALSE !== strpos( $content, '||' ) ){ $image = ''; $link = ''; list( $image, $link) = explode( '||', $content ); $formattedValue = "<a href='{$link}' target='_blank' rel='lightbox[-1]'><img src='{$image}' /></a>"; }else{ $formattedValue = "<img src='{$content}' />"; } $formattedValue = apply_filters( 'wpdatatables_filter_image_cell', $formattedValue ); return $formattedValue; } } ?>