Radio Switch buttons
Radio Switch buttons.
HIDE CODE
<?php
$xcrud = Xcrud::get_instance();
$xcrud->table('gallery');
$xcrud->change_type('image', 'image', false, array(
'width' => 450,
'path' => '../uploads/gallery',
'thumbs' => array(array(
'height' => 55,
'width' => 120,
'crop' => true,
'marker' => '_th'))));
$xcrud->column_callback("active","getStatusSwitchRadio_Gallery");
$xcrud->create_action("deactivate_gallery","deactivate_gallery");
$xcrud->create_action("activate_gallery","activate_gallery");
echo $xcrud->render();
?>