I'm working since now on re-smush, bulk smush features in WP Smush.it NextGen Gallery integration.
This is my first work with wordpress so it's very hard for me.
I changed some line on existing code in order to add link to resmush
/* ngg_manage_image_custom_column hook */
function manage_image_custom_column( $column_name, $id ) {
self::check_support();
if( $column_name == 'smushit' ) {
$meta = new nggMeta( $id );
$status = $meta->get_META( '_wp_smushit' );
$linkofpicture = $meta->image->imageURL;
if ( !$status || empty( $status ) ) {
echo 'Not processed <a href="?filetoresize='.$linkofpicture.'">Smush-it</a>';
// TODO: allow manual re-smushing
} else {
echo $status.' <a href="?filetoresize='. $linkofpicture.'">ReSmush-it</a>';
}
}
}
I need a lot of time to do that, and certainly some help.
I will inform you about my work