Open XCloner | Get Premium Support | Donate
Version: 3.0.4
Author: Liuta Ovidiu
Author URI: http://www.xcloner.com
Plugin URI: http://www.xcloner.com
*/
// no direct access
#defined( '_JEXEC' ) or die( 'Restricted access' );
function xcloner_show(){
print "";
}
function xcloner_install(){
}
function xcloner_page(){
if ( function_exists('add_submenu_page') )
add_submenu_page('plugins.php', XCloner, XCloner, 'manage_options', 'xcloner_show', 'xcloner_show');
}
#add_action('admin_head', 'xcloner');
add_action('admin_menu', 'xcloner_page');
#add_options_page('XCloner Options', 'XCloner', 9, 'index.php', 'xcloner_options');
if (isset($_GET['activate']) && $_GET['activate'] == 'true')
{
add_action('init', 'xcloner_install');
}
?>