File: /home/t/h/a/thanexcelr/www/wp-content/plugins/2j-slideshow/inc/addons/report/report.init.php
<?php
/*
* 2J SlideShow http://2joomla.net/wordpress
* Version: 1.3.12 - 85273
* Author: 2J Team (c)
* Author URI: http://2joomla.net/wordpress
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Date: Sat, 28 Jan 2017 14:08:08 GMT
*/
if(!function_exists('twoj_slideshow_report_init')){
function twoj_slideshow_report_init(){
twoj_slideshow_include('report.class.php', plugin_dir_path( __FILE__ ) );
new TwojSlideShowReport( TWOJ_SLIDESHOW_TYPE_POST );
}
add_action( 'init', 'twoj_slideshow_report_init' );
}
if(!function_exists('twoj_slideshow_report_submenu_page')){
add_action('admin_menu', 'twoj_slideshow_report_submenu_page');
function twoj_slideshow_report_submenu_page() {
add_submenu_page( 'edit.php?post_type='.TWOJ_SLIDESHOW_TYPE_POST, 'Report', 'Report', 'manage_options', 'twoj-slideshow-report', 'twoj_slideshow_report_submenu_page_render' );
}
function twoj_slideshow_report_submenu_page_render(){
twoj_slideshow_include('report.html.php', plugin_dir_path( __FILE__ ));
}
}