File tree 2 files changed +16
-16
lines changed
2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1
- # wp-boilerplate-plugin-with-vuejs
1
+ # WP CRUD Project With vue
2
2
3
- #### A simple boilerplate plugin for WordPress using vue js.
3
+ #### A simple CRUD plugin for WordPress using vue js.
4
4
5
5
6
6
## How to use:
18
18
19
19
* Open with an IDE (Vscode, sublime, PhpStorm etc)
20
20
21
- * Change all the ` crud_project ` to Your-Plugin-Name
22
- * Change all the ` CRUDPROJECT ` to YOURCRUDPROJECT (Upper case)
23
- * Change all the ` CrudProject ` to YourCrudProject (Upper Camel Case)
24
- * Change all the ` Crud_Project ` to your_crud_project
25
- * Change all the ` crud_project ` to yourcrud_project
21
+ * Change all the ` crud_project ` to Your-plugin_name
22
+ * Change all the ` CRUDPROJECT ` to YOUR-PLUGINNAME (Upper case)
23
+ * Change all the ` CrudProject ` to Your-PluginName (Upper Camel Case)
24
+ * Change all the ` Crud_Project ` to Your-Plugin_Name
25
+ * Change all the ` crud_project ` to your-plugin_name
26
26
27
27
28
28
## All done have fun
Original file line number Diff line number Diff line change 2
2
3
3
/*
4
4
Plugin Name: CRUD Project
5
- Plugin URI: #
6
- Description: A WordPress boilerplate plugin with Vue js.
5
+ Plugin URI: https://github.com/ruhel241/wp-crud-project-plugin-with-vuejs
6
+ Description: A WordPress CRUD plugin with Vue js.
7
7
Version: 1.0.0
8
- Author: #
9
- Author URI: #
8
+ Author: Md.Ruhel Khan
9
+ Author URI: https://github.com/ruhel241
10
10
License: GPLv2 or later
11
11
Text Domain: crud_project
12
12
*/
@@ -112,11 +112,11 @@ public function registerShortcodes()
112
112
(new CrudProject ())->boot ();
113
113
});
114
114
115
- register_activation_hook (__FILE__ , function ($ newWorkWide ) {
116
- //require_once(CRUDPROJECT_DIR . 'includes/Classes/Activator.php');
117
- $ activator = new \CrudProject \Classes \Activator ();
118
- $ activator ->migrateDatabases ($ newWorkWide );
119
- });
115
+ // register_activation_hook(__FILE__, function ($newWorkWide) {
116
+ // //require_once(CRUDPROJECT_DIR . 'includes/Classes/Activator.php');
117
+ // $activator = new \CrudProject\Classes\Activator();
118
+ // $activator->migrateDatabases($newWorkWide);
119
+ // });
120
120
121
121
} else {
122
122
add_action ('admin_init ' , function () {
You can’t perform that action at this time.
0 commit comments