It is hard to continue development and support for this plugin without contributions from users like you. If you enjoy using the plugin and find it useful, please consider support by DONATION or BUY THE PRO VERSION (Ad Less) of the Plugin. Your support will help encourage and support the plugin’s continued development and better user support.
';
}
public function pdfp_addons_callback(){
echo'
LightBox Addons enable Pdf poster to open a pdf file in a lightBox.
';
}
public function pdfp_callback( ) {
echo'
- ★★★★★ Rate Pdf Poster Plugin
- Take a screenshot along with your name and the comment.
- Email us ( pluginsfeedback@gmail.com ) the screenshot.
- You will receive a promo Code of 100% Off.
Your Review is very important to us as it helps us to grow more.
Not happy, Sorry for that. You can request for improvement.
';
}
public function pdfp_add_dashboard_widgets() {
wp_add_dashboard_widget( 'pdfp_example_dashboard_widget', 'Support PDF Poster', [$this, 'pdfp_dashboard_widget_function'] );
global $wp_meta_boxes;
$normal_dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
$example_widget_backup = array( 'pdfp_example_dashboard_widget' => $normal_dashboard['pdfp_example_dashboard_widget'] );
unset( $normal_dashboard['pdfp_example_dashboard_widget'] );
$sorted_dashboard = array_merge( $example_widget_backup, $normal_dashboard );
$wp_meta_boxes['dashboard']['normal']['core'] = $sorted_dashboard;
}
public function pdfp_dashboard_widget_function() {
// Display whatever it is you want to show.
echo 'It is hard to continue development and support for this plugin without contributions from users like you. If you enjoy using the plugin and find it useful, please consider support by DONATION or BUY THE PRO VERSION (Ad Less) of the Plugin. Your support will help encourage and support the plugin’s continued development and better user support.
';
}
}
Metabox::instance();