at path:
ROOT
/
wp-content
/
plugins
/
optinmonster
/
views
/
install-plugin-form.php
run:
R
W
Run
archie-loading.php
3.33 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
constantcontact.php
9.2 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
coupon-metabox.php
6.9 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
disable-warning-css.php
933 By
2025-11-20 19:51:54
R
W
Run
Delete
Rename
inline-campaign-shortcode-modal.php
1.27 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
install-plugin-form.php
1.31 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
jiggle-css.php
663 By
2025-11-20 19:51:54
R
W
Run
Delete
Rename
logo.svg
37.08 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
monsterlink-campaign-shortcode-modal.php
1.91 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
not-connected-buttons.php
495 By
2025-11-20 19:51:54
R
W
Run
Delete
Rename
plugin-banner.php
1.03 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
product-metabox.php
11.24 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
seedprod-settings-page.php
4.3 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
shortcode-modal-css.php
4.74 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
shortcode-modal.php
2.15 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
trustpulse-banner.php
1.29 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
trustpulse-settings-page.php
3.73 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
upgrade-link-css.php
507 By
2025-11-20 19:51:54
R
W
Run
Delete
Rename
woocommerce-marketing-card-css.php
1.65 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
woocommerce-marketing-card.php
1.13 KB
2025-11-20 19:51:54
R
W
Run
Delete
Rename
error_log
up
📄
install-plugin-form.php
Save
<?php wp_enqueue_script( 'om-plugin-install-js', $this->url . 'assets/dist/js/plugininstall.min.js', array( 'jquery' ), $this->asset_version() ); OMAPI_Utils::add_inline_script( 'om-plugin-install-js', 'OMAPI_Plugins', array( 'restUrl' => rest_url(), 'pluginData' => $data['plugin'], 'actionNonce' => wp_create_nonce( 'om_plugin_action_nonce' ), 'restNonce' => wp_create_nonce( 'wp_rest' ), ) ); ?> <style> #om-plugin-alerts { display: none; margin-bottom: 15px !important; padding: 10px !important; } #om-plugin-alerts p { margin-bottom: 10px !important; } </style> <div class="notice notice-error" id="om-plugin-alerts"></div> <form class="install-plugin-form" action="<?php echo esc_url( $data['plugin_search_url'] ); ?>" method="post" > <?php if ( ! empty( $data['plugin']['installed'] ) ) : ?> <button type="submit" id="activateButton" class="button button-primary button-activate" data-actiontext="<?php esc_attr_e( 'Activating...', 'optin-monster-api' ); ?>"> <?php echo esc_html( $data['button_activate'] ); ?> </button> <?php else : ?> <button type="submit" id="installButton" class="button button-primary button-install" data-actiontext="<?php esc_attr_e( 'Installing...', 'optin-monster-api' ); ?>"> <?php echo esc_html( $data['button_install'] ); ?> </button> <?php endif; ?> </form>