PluginProbe
ERP: Complete HR, Accounting & CRM Suite Built for WooCommerce / 1.2.6
ERP: Complete HR, Accounting & CRM Suite Built for WooCommerce v1.2.6
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 / includes / framework / views / settings-page.php

settings-page.php in ERP: Complete HR, Accounting & CRM Suite Built for WooCommerce 1.2.6, at includes/framework/views/settings-page.php

28 lines 852 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="wrap erp-settings">
2
3 <form method="post" id="mainform" action="" enctype="multipart/form-data">
4
5 <?php WeDevs\ERP\Framework\ERP_Admin_Settings::output(); ?>
6
7 <?php
8 global $current_class;
9
10 do_action( 'erp_after_admin_settings_' . $current_class->get_id() );
11
12 $get_section_field_items = $current_class->get_section_field_items();
13 $submit_btn_status = isset( $get_section_field_items['submit_button'] ) ? $get_section_field_items['submit_button'] : true;
14 ?>
15 <?php
16 if ( $submit_btn_status ) {
17 ?>
18 <p class="submit">
19 <input name="save" class="button-primary" type="submit" value="<?php _e( 'Save changes', 'erp' ); ?>" />
20 <input type="hidden" name="subtab" id="last_tab" />
21
22 <?php wp_nonce_field( 'erp-settings-nonce' ); ?>
23 </p>
24 <?php } ?>
25
26 </form>
27 </div>
28