PluginProbe
ERP: Complete HR, Accounting & CRM Suite Built for WooCommerce / 1.3.13
ERP: Complete HR, Accounting & CRM Suite Built for WooCommerce v1.3.13
1.17.9 1.17.8 1.17.7 1.17.6 1.17.5 1.17.4 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.3.0 1.3.1 1.3.11 1.3.12 1.3.13 1.3.14 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 All 143 releases
erp / modules / crm / includes / cli / commands.php

commands.php in ERP: Complete HR, Accounting & CRM Suite Built for WooCommerce 1.3.13, at modules/crm/includes/cli/commands.php

29 lines 721 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace WeDevs\ERP\CRM\CLI;
3
4 /**
5 * CRM CLI class
6 */
7 class Commands extends \WP_CLI_Command {
8
9 public function delete( $args, $assoc_args ) {
10 global $wpdb;
11
12 // truncate table
13 $tables = [ 'erp_peoples', 'erp_peoplemeta', 'erp_people_type_relations', 'erp_crm_customer_activities', 'erp_crm_contact_subscriber' ];
14
15 if ( in_array( 'with-groups', $assoc_args ) ) {
16 $tables[] = 'erp_crm_contact_group';
17 }
18
19 foreach ( $tables as $table ) {
20 $wpdb->query( 'TRUNCATE TABLE ' . $wpdb->prefix . $table );
21 }
22
23 \WP_CLI::success( "Tables deleted successfully!" );
24 }
25
26 }
27
28 \WP_CLI::add_command( 'crm', 'WeDevs\ERP\CRM\CLI\Commands' );
29