PluginProbe
JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications / 1.3
JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications v1.3
2.5.0 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4.0 All 33 releases
jobwp / admin / view / partial / listing-content.php

listing-content.php in JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications 1.3, at admin/view/partial/listing-content.php

56 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit;
4 }
5
6 //print_r( $jobwpListingContent );
7 foreach ( $jobwpListingContent as $option_name => $option_value ) {
8 if ( isset( $jobwpListingContent[$option_name] ) ) {
9 ${"" . $option_name} = $option_value;
10 }
11 }
12 ?>
13 <form name="jobwp_listing_content_settings_form" role="form" class="form-horizontal" method="post" action="" id="jobwp-listing-content-settings-form">
14 <table class="jobwp-listing-content-settings-table">
15 <tr>
16 <th scope="row">
17 <label for="jobwp_list_display_overview"><?php _e('Hide Overview', JOBWP_TXT_DOMAIN); ?>?</label>
18 </th>
19 <td>
20 <input type="checkbox" name="jobwp_list_display_overview" class="jobwp_list_display_overview" id="jobwp_list_display_overview" value="1"
21 <?php echo $jobwp_list_display_overview ? 'checked' : ''; ?> >
22 </td>
23 </tr>
24 <tr>
25 <th scope="row">
26 <label for="wbg_cat_label_txt"><?php _e('Overview Word Lengtht', JOBWP_TXT_DOMAIN); ?>:</label>
27 </th>
28 <td>
29 <input type="number" name="jobwp_list_overview_length" class="medium-text" min="1" max="150" step="1" value="<?php esc_attr_e( $jobwp_list_overview_length ); ?>">
30 </td>
31 </tr>
32 <tr>
33 <th scope="row">
34 <label><?php _e('Experience Label Text', JOBWP_TXT_DOMAIN); ?></label>
35 </th>
36 <td>
37 <input type="text" name="jobwp_list_exp_lbl_txt" id="jobwp_list_exp_lbl_txt" class="regular-text" value="<?php esc_attr_e( $jobwp_list_exp_lbl_txt ); ?>" />
38 </td>
39 </tr>
40 <tr>
41 <th scope="row">
42 <label><?php _e('Deadline Label Text', JOBWP_TXT_DOMAIN); ?></label>
43 </th>
44 <td>
45 <input type="text" name="jobwp_list_deadline_lbl_txt" id="jobwp_list_deadline_lbl_txt" class="regular-text" value="<?php esc_attr_e( $jobwp_list_deadline_lbl_txt ); ?>" />
46 </td>
47 </tr>
48 </table>
49 <hr>
50 <p class="submit">
51 <button id="updateListingContent" name="updateListingContent" class="button button-primary jobwp-button">
52 <i class="fa fa-check-circle" aria-hidden="true"></i>&nbsp;<?php _e('Save Settings', JOBWP_TXT_DOMAIN); ?>
53 </button>
54 </p>
55
56 </form>