PluginProbe
JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications / 2.3.9
JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications v2.3.9
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-style.php

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

272 lines 7.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( !defined( 'ABSPATH' ) ) {
4 exit;
5 }
6 //$jobwpListingStyles = [];
7 foreach ( $jobwpListingStyles as $option_name => $option_value ) {
8 if ( isset( $jobwpListingStyles[$option_name] ) ) {
9 ${"" . $option_name} = $option_value;
10 }
11 }
12 ?>
13 <form name="jobwp_listing_style_form" role="form" class="form-horizontal" method="post" action="" id="jobwp-listing-style-form">
14 <table class="jobwp-listing-style-settings-table">
15 <!-- Job Item -->
16 <tr>
17 <th scope="row" colspan="6">
18 <hr><span><?php
19 _e( 'Job Item', JOBWP_TXT_DOMAIN );
20 ?></span><hr>
21 </th>
22 </tr>
23 <tr>
24 <th scope="row">
25 <label><?php
26 _e( 'Background Color', JOBWP_TXT_DOMAIN );
27 ?>:</label>
28 </th>
29 <td>
30 <?php
31 ?>
32 <span><?php
33 echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
34 ?></span>
35 <?php
36 ?>
37 </td>
38 <th scope="row">
39 <label><?php
40 _e( 'Border Color', JOBWP_TXT_DOMAIN );
41 ?>:</label>
42 </th>
43 <td>
44 <?php
45 ?>
46 <span><?php
47 echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
48 ?></span>
49 <?php
50 ?>
51 </td>
52 </tr>
53 <!-- Title -->
54 <tr>
55 <th scope="row" colspan="6">
56 <hr><span><?php
57 _e( 'Job Title', JOBWP_TXT_DOMAIN );
58 ?></span><hr>
59 </th>
60 </tr>
61 <tr>
62 <th scope="row">
63 <label><?php
64 _e( 'Font Color', JOBWP_TXT_DOMAIN );
65 ?>:</label>
66 </th>
67 <td>
68 <input class="jobwp-wp-color" type="text" name="jobwp_listing_title_font_color" id="jobwp_listing_title_font_color" value="<?php
69 esc_attr_e( $jobwp_listing_title_font_color );
70 ?>">
71 <div id="colorpicker"></div>
72 </td>
73 <th scope="row">
74 <label><?php
75 _e( 'Font Size', JOBWP_TXT_DOMAIN );
76 ?>:</label>
77 </th>
78 <td>
79 <input type="number" class="small-text" min="11" max="50" name="jobwp_listing_title_font_size" id="jobwp_listing_title_font_size" value="<?php
80 esc_attr_e( $jobwp_listing_title_font_size );
81 ?>">
82 <code>px</code>
83 </td>
84 </tr>
85 <!-- Overview -->
86 <tr>
87 <th scope="row" colspan="6">
88 <hr><span><?php
89 _e( 'Job Overview', JOBWP_TXT_DOMAIN );
90 ?></span><hr>
91 </th>
92 </tr>
93 <tr>
94 <th scope="row">
95 <label><?php
96 _e( 'Font Color', JOBWP_TXT_DOMAIN );
97 ?>:</label>
98 </th>
99 <td>
100 <input class="jobwp-wp-color" type="text" name="jobwp_listing_overview_font_color" id="jobwp_listing_overview_font_color" value="<?php
101 esc_attr_e( $jobwp_listing_overview_font_color );
102 ?>">
103 <div id="colorpicker"></div>
104 </td>
105 <th scope="row">
106 <label><?php
107 _e( 'Font Size', JOBWP_TXT_DOMAIN );
108 ?>:</label>
109 </th>
110 <td>
111 <input type="number" class="small-text" min="11" max="50" name="jobwp_listing_overview_font_size" id="jobwp_listing_overview_font_size" value="<?php
112 esc_attr_e( $jobwp_listing_overview_font_size );
113 ?>">
114 <code>px</code>
115 </td>
116 </tr>
117 <!-- Job Info -->
118 <tr>
119 <th scope="row" colspan="6">
120 <hr><span><?php
121 _e( 'Job Information Label', JOBWP_TXT_DOMAIN );
122 ?></span><hr>
123 </th>
124 </tr>
125 <tr>
126 <th scope="row">
127 <label><?php
128 _e( 'Font Color', JOBWP_TXT_DOMAIN );
129 ?>:</label>
130 </th>
131 <td>
132 <?php
133 ?>
134 <span><?php
135 echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
136 ?></span>
137 <?php
138 ?>
139 </td>
140 <th scope="row">
141 <label><?php
142 _e( 'Font Size', JOBWP_TXT_DOMAIN );
143 ?>:</label>
144 </th>
145 <td>
146 <?php
147 ?>
148 <span><?php
149 echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
150 ?></span>
151 <?php
152 ?>
153 </td>
154 </tr>
155 <!-- Pagination -->
156 <tr>
157 <th scope="row" colspan="6">
158 <hr><span><?php
159 _e( 'Pagination', JOBWP_TXT_DOMAIN );
160 ?></span><hr>
161 </th>
162 </tr>
163 <tr>
164 <th scope="row">
165 <label><?php
166 _e( 'Background Color', JOBWP_TXT_DOMAIN );
167 ?>:</label>
168 </th>
169 <td>
170 <?php
171 ?>
172 <span><?php
173 echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
174 ?></span>
175 <?php
176 ?>
177 </td>
178 <th scope="row">
179 <label><?php
180 _e( 'Border Color', JOBWP_TXT_DOMAIN );
181 ?>:</label>
182 </th>
183 <td>
184 <?php
185 ?>
186 <span><?php
187 echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
188 ?></span>
189 <?php
190 ?>
191 </td>
192 <th scope="row">
193 <label><?php
194 _e( 'Font Color', JOBWP_TXT_DOMAIN );
195 ?>:</label>
196 </th>
197 <td>
198 <?php
199 ?>
200 <span><?php
201 echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
202 ?></span>
203 <?php
204 ?>
205 </td>
206 </tr>
207 <tr>
208 <th scope="row">
209 <label><?php
210 _e( 'Font Size', JOBWP_TXT_DOMAIN );
211 ?>:</label>
212 </th>
213 <td>
214 <?php
215 ?>
216 <span><?php
217 echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
218 ?></span>
219 <?php
220 ?>
221 </td>
222 <th scope="row">
223 <label><?php
224 _e( 'Border Radius', JOBWP_TXT_DOMAIN );
225 ?>:</label>
226 </th>
227 <td>
228 <?php
229 ?>
230 <span><?php
231 echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
232 ?></span>
233 <?php
234 ?>
235 </td>
236 </tr>
237 <tr>
238 <th scope="row">
239 <label><?php
240 _e( 'Hover Background Color', JOBWP_TXT_DOMAIN );
241 ?>:</label>
242 </th>
243 <td>
244 <?php
245 ?>
246 <span><?php
247 echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
248 ?></span>
249 <?php
250 ?>
251 </td>
252 <th scope="row">
253 <label><?php
254 _e( 'Hover Font Color', JOBWP_TXT_DOMAIN );
255 ?>:</label>
256 </th>
257 <td>
258 <?php
259 ?>
260 <span><?php
261 echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
262 ?></span>
263 <?php
264 ?>
265 </td>
266 </tr>
267 </table>
268 <hr>
269 <p class="submit"><button id="updateListingStyles" name="updateListingStyles" class="button button-primary jobwp-button"><?php
270 _e( 'Save Settings', JOBWP_TXT_DOMAIN );
271 ?></button></p>
272 </form>