1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-05 21:03:15 +03:00

merge conflict resolution

This commit is contained in:
Tom McFarlin 2013-11-08 16:53:27 -05:00
parent fce6701179
commit f293c94419

View file

@ -42,6 +42,13 @@ if ( ! defined( 'WPINC' ) ) {
*/ */
require_once( plugin_dir_path( __FILE__ ) . '/public/class-plugin-name.php' ); require_once( plugin_dir_path( __FILE__ ) . '/public/class-plugin-name.php' );
$class_plugin_name_php = 'class-plugin-name.php';
$plugin_name = 'Plugin_Name';
$class_plugin_name_admin_php = 'class-plugin-name-admin.php';
$plugin_name_admin = 'Plugin_Name_admin';
require_once( plugin_dir_path( __FILE__ ) . "/public/$class_plugin_name_php" );
/* /*
* Register hooks that are fired when the plugin is activated or deactivated. * Register hooks that are fired when the plugin is activated or deactivated.
* When the plugin is deleted, the uninstall.php file is loaded. * When the plugin is deleted, the uninstall.php file is loaded.