whoami7 - Manager
:
/
home
/
dataiclx
/
vielorbe.com
/
wp-content
/
plugins
/
surecart
/
app
/
src
/
Activation
/
Upload File:
files >> //home/dataiclx/vielorbe.com/wp-content/plugins/surecart/app/src/Activation/ActivationService.php
<?php namespace SureCart\Activation; use SureCart\Models\RegisteredWebhook; /** * Service for plugin activation. */ class ActivationService { /** * Holds the roles service. * * @var \SureCart\Permissions\RolesService */ protected $roles = null; /** * Holds the roles service. * * @var \SureCart\WordPress\Pages\PageSeeder */ protected $seeder = null; /** * Holds the salt service. * * @var \SureCart\Permissions\SureCartSaltService */ protected $salt = null; /** * Get dependencies for this service. * * @param \SureCart\Permissions\RolesService $roles Roles service. * @param \SureCart\WordPress\Pages\PageSeeder $seeder Seeder service. * @param \SureCart\Permissions\SureCartSaltService $salt Salt service. */ public function __construct( \SureCart\Permissions\RolesService $roles, \SureCart\WordPress\Pages\PageSeeder $seeder, \SureCart\Permissions\SureCartSaltService $salt ) { $this->roles = $roles; $this->seeder = $seeder; $this->salt = $salt; } /** * Bootstrap. * * @return void */ public function bootstrap() { register_activation_hook( SURECART_PLUGIN_FILE, [ $this, 'activate' ] ); register_deactivation_hook( SURECART_PLUGIN_FILE, [ $this, 'deactivate' ] ); } /** * Create roles on plugin activation. * * @return void */ public function activate() { // Create roles. $this->roles->create(); // Seed pages and forms. $this->seeder->seed(); // Add the encryption key to the wp-config.php file. $this->salt->write(); } /** * On deactivation logic. * * @return void */ public function deactivate() { // clear webhooks. RegisteredWebhook::delete(); } /** * Remove roles and all data. * * @return void */ public function uninstall() { // remove roles. $this->roles->delete(); // remove pages that were automatically seeded. $this->seeder->delete(); // remove all forms. $this->removeFormPosts(); // remove all options from the options table. $this->removeOptions(); // remove all tables. $this->removeTables(); } /** * Remove all tables. * * @return void */ public function removeTables() { // Delete the integration table. $integrations = new \SureCart\Database\Tables\Integrations( new \SureCart\Database\Table() ); $integrations->uninstall(); } /** * Remove all posts from our post type. * * @return void */ public function removeFormPosts() { // remove all form posts. $form_ids = get_posts( [ 'post_type' => 'sc_form', 'numberposts' => -1, 'fields' => 'ids', ] ); foreach ( $form_ids as $form_id ) { wp_delete_post( $form_id, true ); } } /** * Remove all our options from the options table. * * @return void */ public function removeOptions() { delete_option( 'surecart_registered_webhook' ); delete_option( 'surecart_previous_webhook' ); delete_option( 'surecart_order-confirmation_page_id' ); delete_option( 'surecart_dashboard_page_id' ); delete_option( 'surecart_checkout_sc_form_id' ); delete_option( 'surecart_use_esm_loader' ); delete_option( 'surecart_checkout_page_id' ); delete_option( 'sc_api_token' ); delete_option( 'sc_previous_account' ); delete_option( 'sc_uninstall' ); } }
Copyright ©2021 || Defacer Indonesia