vk-all-in-one-expansion-unit
Last commit date
_scss
10 years ago
bootstrap
10 years ago
css
10 years ago
images
10 years ago
js
10 years ago
languages
10 years ago
plugins
10 years ago
README.md
10 years ago
admin_wrapper.php
10 years ago
common_helpers.php
10 years ago
common_init.php
10 years ago
config.rb
11 years ago
gulpfile.js
10 years ago
readme.txt
10 years ago
screenshot-1.png
10 years ago
screenshot-2.png
10 years ago
vkExUnit.php
10 years ago
vkExUnit_admin.php
10 years ago
vkExUnit_admin.php
375 lines
| 1 | <div class="wrap vkExUnit_admin_page"> |
| 2 | <h2> |
| 3 | <span class="pageTitleTxt">VK All in One Expansion Unit <?php _e('Enable setting','vkExUnit');?></span> |
| 4 | </h2> |
| 5 | |
| 6 | <div class="adminMain"> |
| 7 | <form method="post" action="options.php"> |
| 8 | <?php |
| 9 | settings_fields( 'vkExUnit_common_options_fields' ); |
| 10 | $options = vkExUnit_get_common_options(); |
| 11 | ?> |
| 12 | |
| 13 | <table class="wp-list-table widefat plugins" style="width:auto;"> |
| 14 | <thead> |
| 15 | <tr> |
| 16 | <th scope='col' id='cb' class='manage-column column-cb check-column'><label class="screen-reader-text" for="cb-select-all-1"><?php _e('Select all','vkExUnit');?></label><input id="cb-select-all-1" type="checkbox" /></th><th scope='col' id='name' class='manage-column column-name'><?php _e('Function','vkExUnit');?></th><th scope='col' id='description' class='manage-column column-description'><?php _e('Description','vkExUnit');?></th> |
| 17 | </tr> |
| 18 | </thead> |
| 19 | |
| 20 | <tbody id="the-list"> |
| 21 | |
| 22 | <!-- [ active_bootstrap ] --> |
| 23 | <tr<?php echo (isset($options['active_bootstrap']) && $options['active_bootstrap'])? ' class="active"': ' class="inactive"'; ?>> |
| 24 | <th scope='row' class='check-column'> |
| 25 | <label class='screen-reader-text' for='checkbox_active_bootstrap' > |
| 26 | <?php _e('Choose Print Bootstrap css', 'vkExUnit'); ?> |
| 27 | </label> |
| 28 | <input type="checkbox" name="vkExUnit_common_options[active_bootstrap]" id="checkbox_active_bootstrap" value="true" <?php echo (isset($options['active_bootstrap']) && $options['active_bootstrap'])? 'checked': ''; ?> /> |
| 29 | </th> |
| 30 | <td class='plugin-title'> |
| 31 | <strong><?php _e('Print Bootstrap css and js', 'vkExUnit'); ?></strong> |
| 32 | </td> |
| 33 | <td class='column-description desc'> |
| 34 | <div class='plugin-description'> |
| 35 | <p><?php _e('If your using theme has already including Bootstrap, you deactivate this item.','vkExUnit'); ?></p> |
| 36 | </div><!-- [ /.plugin-description ] --> |
| 37 | </td> |
| 38 | </tr> |
| 39 | |
| 40 | <!-- [ active_fontawesome ] --> |
| 41 | <tr<?php echo (isset($options['active_fontawesome']) && $options['active_fontawesome'])? ' class="active"': ' class="inactive"'; ?>> |
| 42 | <th scope='row' class='check-column'> |
| 43 | <label class='screen-reader-text' for='checkbox_active_fontawesome' > |
| 44 | <?php _e('Choose Print link fontawesome.', 'vkExUnit'); ?> |
| 45 | </label> |
| 46 | <input type="checkbox" name="vkExUnit_common_options[active_fontawesome]" id="checkbox_active_fontawesome" value="true" <?php echo (isset($options['active_fontawesome']) && $options['active_fontawesome'])? 'checked': ''; ?> /> |
| 47 | </th> |
| 48 | <td class='plugin-title'> |
| 49 | <strong><?php _e('Print link fontawesome.', 'vkExUnit'); ?></strong> |
| 50 | </td> |
| 51 | <td class='column-description desc'> |
| 52 | <div class='plugin-description'> |
| 53 | <p><?php _e('Print fontawesome link tag to html head.', 'vkExUnit'); ?></p> |
| 54 | </div><!-- [ /.plugin-description ] --> |
| 55 | </td> |
| 56 | </tr> |
| 57 | |
| 58 | <!-- [ active_icon ] --> |
| 59 | <tr<?php echo (isset($options['active_icon']) && $options['active_icon'])? ' class="active"': ' class="inactive"'; ?>> |
| 60 | <th scope='row' class='check-column'> |
| 61 | <label class='screen-reader-text' for='checkbox_active_icon' > |
| 62 | <?php _e('Choose Print meta description.', 'vkExUnit'); ?> |
| 63 | </label> |
| 64 | <input type="checkbox" name="vkExUnit_common_options[active_icon]" id="checkbox_active_icon" value="true" <?php echo (isset($options['active_icon']) && $options['active_icon'])? 'checked': ''; ?> /> |
| 65 | </th> |
| 66 | <td class='plugin-title'> |
| 67 | <strong><?php _e('Favicon setting', 'vkExUnit'); ?></strong> |
| 68 | </td> |
| 69 | <td class='column-description desc'> |
| 70 | <div class='plugin-description'> |
| 71 | <p><?php _e('About favicon.', 'vkExUnit'); ?></p> |
| 72 | </div><!-- [ /.plugin-description ] --> |
| 73 | </td> |
| 74 | </tr> |
| 75 | |
| 76 | <!-- [ active_wpTitle ] --> |
| 77 | <tr<?php echo (isset($options['active_wpTitle']) && $options['active_wpTitle'])? ' class="active"': ' class="inactive"'; ?>> |
| 78 | <th scope='row' class='check-column'> |
| 79 | <label class='screen-reader-text' for='checkbox_active_wpTitle' > |
| 80 | <?php _e('Choose Rewrite the title tag', 'vkExUnit'); ?> |
| 81 | </label> |
| 82 | <input type="checkbox" name="vkExUnit_common_options[active_wpTitle]" id="checkbox_active_wpTitle" value="true" <?php echo (isset($options['active_wpTitle']) && $options['active_wpTitle'])? 'checked': ''; ?> /> |
| 83 | </th> |
| 84 | <td class='plugin-title'> |
| 85 | <strong><?php _e('Rewrite the title tag', 'vkExUnit'); ?></strong> |
| 86 | </td> |
| 87 | <td class='column-description desc'> |
| 88 | <div class='plugin-description'> |
| 89 | <p><?php _e('Print is rewritten by its own rules to html head.', 'vkExUnit'); ?></p> |
| 90 | </div><!-- [ /.plugin-wpTitle ] --> |
| 91 | </td> |
| 92 | </tr> |
| 93 | |
| 94 | <!-- [ active_metaKeyword ] --> |
| 95 | <tr<?php echo (isset($options['active_metaKeyword']) && $options['active_metaKeyword'])? ' class="active"': ' class="inactive"'; ?>> |
| 96 | <th scope='row' class='check-column'> |
| 97 | <label class='screen-reader-text' for='checkbox_active_metaKeyword' > |
| 98 | <?php _e('Choose Print meta Keyword.', 'vkExUnit'); ?> |
| 99 | </label> |
| 100 | <input type="checkbox" name="vkExUnit_common_options[active_metaKeyword]" id="checkbox_active_metaKeyword" value="true" <?php echo (isset($options['active_metaKeyword']) && $options['active_metaKeyword'])? 'checked': ''; ?> /> |
| 101 | </th> |
| 102 | <td class='plugin-title'> |
| 103 | <strong><?php _e('Print meta Keyword', 'vkExUnit'); ?></strong> |
| 104 | |
| 105 | <?php if (isset($options['active_metaKeyword']) && $options['active_metaKeyword']) : ?> |
| 106 | <div class="row-actions visible"> |
| 107 | <span class="0"> |
| 108 | <a href="<?php echo admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_common_keywords';?>"> |
| 109 | <?php _e('Setting','vkExUnit');?> |
| 110 | </a></span> |
| 111 | </div> |
| 112 | <?php endif; ?> |
| 113 | |
| 114 | </td> |
| 115 | <td class='column-Keyword desc'> |
| 116 | <div class='plugin-Keyword'> |
| 117 | <p><?php _e('Print meta Keyword to html head.', 'vkExUnit'); ?></p> |
| 118 | </div><!-- [ /.plugin-Keyword ] --> |
| 119 | </td> |
| 120 | </tr> |
| 121 | |
| 122 | <!-- [ active_metaDescription ] --> |
| 123 | <tr<?php echo (isset($options['active_metaDescription']) && $options['active_metaDescription'])? ' class="active"': ' class="inactive"'; ?>> |
| 124 | <th scope='row' class='check-column'> |
| 125 | <label class='screen-reader-text' for='checkbox_active_metaDescription' > |
| 126 | <?php _e('Choose Print meta description.', 'vkExUnit'); ?> |
| 127 | </label> |
| 128 | <input type="checkbox" name="vkExUnit_common_options[active_metaDescription]" id="checkbox_active_metaDescription" value="true" <?php echo (isset($options['active_metaDescription']) && $options['active_metaDescription'])? 'checked': ''; ?> /> |
| 129 | </th> |
| 130 | <td class='plugin-title'> |
| 131 | <strong><?php _e('Print meta description', 'vkExUnit'); ?></strong> |
| 132 | </td> |
| 133 | <td class='column-description desc'> |
| 134 | <div class='plugin-description'> |
| 135 | <p><?php _e('Print meta description to html head.', 'vkExUnit'); ?></p> |
| 136 | </div><!-- [ /.plugin-description ] --> |
| 137 | </td> |
| 138 | </tr> |
| 139 | |
| 140 | <!-- [ active_sns ] --> |
| 141 | <tr<?php echo (isset($options['active_sns']) && $options['active_sns']) ? ' class="active"': ' class="inactive"'; ?>> |
| 142 | <th scope='row' class='check-column'> |
| 143 | <label class='screen-reader-text' for='checkbox_active_sns' > |
| 144 | <?php _e('Choose Social media cooperation.', 'vkExUnit'); ?> |
| 145 | </label> |
| 146 | <input type="checkbox" name="vkExUnit_common_options[active_sns]" id="checkbox_active_sns" value="true" <?php echo (isset($options['active_sns']) && $options['active_sns'])? 'checked': ''; ?> /> |
| 147 | </th> |
| 148 | <td class='plugin-title'> |
| 149 | <strong><?php _e('Social media cooperation.', 'vkExUnit'); ?></strong> |
| 150 | |
| 151 | <?php if (isset($options['active_sns']) && $options['active_sns']) : ?> |
| 152 | <div class="row-actions visible"> |
| 153 | <span class="0"> |
| 154 | <a href="<?php echo admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_sns_options';?>"> |
| 155 | <?php _e('Setting','vkExUnit');?> |
| 156 | </a></span> |
| 157 | </div> |
| 158 | <?php endif; ?> |
| 159 | |
| 160 | </td> |
| 161 | <td class='column-description desc'> |
| 162 | <div class='plugin-description'> |
| 163 | <ul> |
| 164 | <li><?php _e('Print og tags to html head.','vkExUnit');?></li> |
| 165 | <li><?php _e('Print twitter card tags to html head.','vkExUnit');?></li> |
| 166 | <li><?php _e('Print social bookmark buttons.','vkExUnit');?></li> |
| 167 | <li><?php _e('Facebook Page Plugin widget.','vkExUnit');?></li> |
| 168 | <li><?php _e('Print Follow me box to content bottom.','vkExUnit');?></li> |
| 169 | </ul> |
| 170 | <p><?php |
| 171 | $settingPage = '<a href="'.admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_sns_options">'.__('Main setting page').'</a>'; |
| 172 | printf( __( '* You can stop the function separately from the %s.', 'vkExUnit' ), $settingPage );?> |
| 173 | </p> |
| 174 | </div><!-- [ /.plugin-description ] --> |
| 175 | </td> |
| 176 | </tr> |
| 177 | |
| 178 | <!-- [ active_ga ] --> |
| 179 | <tr<?php echo (isset($options['active_ga']) && $options['active_ga'])? ' class="active"': ' class="inactive"'; ?>> |
| 180 | <th scope='row' class='check-column'> |
| 181 | <label class='screen-reader-text' for='checkbox_active_ga' > |
| 182 | <?php _e('Choose Print Google Analytics tracking code.', 'vkExUnit'); ?> |
| 183 | </label> |
| 184 | <input type="checkbox" name="vkExUnit_common_options[active_ga]" id="checkbox_active_ga" value="true" <?php echo (isset($options['active_ga']) && $options['active_ga'])? 'checked': ''; ?> /> |
| 185 | </th> |
| 186 | <td class='plugin-title'> |
| 187 | <strong>Google Analytics</strong> |
| 188 | |
| 189 | <?php if (isset($options['active_ga']) && $options['active_ga']) : ?> |
| 190 | |
| 191 | <span class="0"> |
| 192 | <a href="<?php echo admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_ga_options';?>"> |
| 193 | <?php _e('Setting','vkExUnit');?> |
| 194 | </a></span> |
| 195 | |
| 196 | <?php endif; ?> |
| 197 | |
| 198 | </td> |
| 199 | <td class='column-description desc'> |
| 200 | <div class='plugin-description'> |
| 201 | <p><?php _e('Print Google Analytics tracking code.', 'vkExUnit'); ?></p> |
| 202 | </div><!-- [ /.plugin-description ] --> |
| 203 | </td> |
| 204 | </tr> |
| 205 | |
| 206 | <!-- [ active_relatedPosts ] --> |
| 207 | <tr<?php echo (isset($options['active_relatedPosts']) && $options['active_relatedPosts'])? ' class="active"': ' class="inactive"'; ?>> |
| 208 | <th scope='row' class='check-column'> |
| 209 | <label class='screen-reader-text' for='checkbox_active_relatedPosts' > |
| 210 | <?php _e('Choose Related posts.', 'vkExUnit'); ?> |
| 211 | </label> |
| 212 | <input type="checkbox" name="vkExUnit_common_options[active_relatedPosts]" id="checkbox_active_relatedPosts" value="true" <?php echo (isset($options['active_relatedPosts']) && $options['active_relatedPosts'])? 'checked': ''; ?> /> |
| 213 | </th> |
| 214 | <td class='plugin-title'> |
| 215 | <strong><?php _e('Related posts', 'vkExUnit');?></strong> |
| 216 | </td> |
| 217 | <td class='column-description desc'> |
| 218 | <div class='plugin-description'> |
| 219 | <p><?php _e('Print Related posts lists to post content bottom.', 'vkExUnit'); ?></p> |
| 220 | </div><!-- [ /.plugin-description ] --> |
| 221 | </td> |
| 222 | </tr> |
| 223 | |
| 224 | <!-- [ active_childPageIndex ] --> |
| 225 | <tr<?php echo (isset($options['active_childPageIndex']) && $options['active_childPageIndex'])? ' class="active"': ' class="inactive"'; ?>> |
| 226 | <th scope='row' class='check-column'> |
| 227 | <label class='screen-reader-text' for='checkbox_active_relatedPosts' > |
| 228 | <?php _e('Choose display a child page index to posts.', 'vkExUnit'); ?> |
| 229 | </label> |
| 230 | <input type="checkbox" name="vkExUnit_common_options[active_childPageIndex]" id="checkbox_active_childPageIndex" value="true" <?php echo (isset($options['active_childPageIndex']) && $options['active_childPageIndex'])? 'checked': ''; ?> /> |
| 231 | </th> |
| 232 | <td class='plugin-title'> |
| 233 | <strong><?php _e('Child page index', 'vkExUnit');?></strong> |
| 234 | </td> |
| 235 | <td class='column-description desc'> |
| 236 | <div class='plugin-description'> |
| 237 | <p><?php _e('At the bottom of the specified page, it will display a list of the child page.', 'vkExUnit'); ?></p> |
| 238 | </div><!-- [ /.plugin-description ] --> |
| 239 | </td> |
| 240 | </tr> |
| 241 | |
| 242 | <!-- [ Insert Site Map ] --> |
| 243 | <tr<?php echo (isset($options['active_sitemap_page']) && $options['active_sitemap_page'])? ' class="active"': ' class="inactive"'; ?>> |
| 244 | <th scope='row' class='check-column'> |
| 245 | <label class='screen-reader-text' for='active_sitemap_page' > |
| 246 | <?php _e('Insert Site Map', 'vkExUnit'); ?> |
| 247 | </label> |
| 248 | <input type="checkbox" name="vkExUnit_common_options[active_sitemap_page]" id="active_sitemap_page" value="true" <?php echo (isset($options['active_sitemap_page']) && $options['active_sitemap_page'])? 'checked': ''; ?> /> |
| 249 | </th> |
| 250 | <td class='plugin-title'> |
| 251 | <strong><?php _e('Display HTML Site Map', 'vkExUnit'); ?></strong> |
| 252 | </td> |
| 253 | <td class='column-description desc'> |
| 254 | <div class='plugin-description'> |
| 255 | <p><?php _e('It displays a HTML Site Map to the specified page.', 'vkExUnit'); ?></p> |
| 256 | </div><!-- [ /.plugin-description ] --> |
| 257 | </td> |
| 258 | </tr> |
| 259 | |
| 260 | <!-- [ active_otherWidgets ] --> |
| 261 | <tr<?php echo (isset($options['active_otherWidgets']) && $options['active_otherWidgets'])? ' class="active"': ' class="inactive"'; ?>> |
| 262 | <th scope='row' class='check-column'> |
| 263 | <label class='screen-reader-text' for='checkbox_active_otherWidgets' > |
| 264 | <?php _e('Choose other widgets.', 'vkExUnit'); ?> |
| 265 | </label> |
| 266 | <input type="checkbox" name="vkExUnit_common_options[active_otherWidgets]" id="checkbox_active_otherWidgets" value="true" <?php echo (isset($options['active_otherWidgets']) && $options['active_otherWidgets'])? 'checked': ''; ?> /> |
| 267 | </th> |
| 268 | <td class='plugin-title'> |
| 269 | <strong><?php _e('Widgets', 'vkExUnit');?></strong> |
| 270 | <span> |
| 271 | <a href="<?php echo admin_url().'widgets.php';?>"> |
| 272 | <?php _e('Setting','vkExUnit');?> |
| 273 | </a></span> |
| 274 | </td> |
| 275 | <td class='column-description desc'> |
| 276 | <div class='plugin-description'> |
| 277 | <p><?php _e('You can use various widgets.', 'vkExUnit'); ?></p> |
| 278 | <ul> |
| 279 | <li><?php _e('VK_Recent Posts - display the link text and the date of the latest article title.','vkExUnit');?></li> |
| 280 | <li><?php _e('VK_Page content to widget - display the contents of the page to the widgets.','vkExUnit');?></li> |
| 281 | <li><?php _e('VK_Profile - display the profile entered in the widget.','vkExUnit');?></li> |
| 282 | <li><?php _e('VK_FB Page Plugin - display the Facebook Page Plugin.','vkExUnit');?></li> |
| 283 | <li><?php _e('VK_3PR area - display the 3PR area.','vkExUnit');?></li> |
| 284 | <li>VK_<?php _e( 'categories/tags list', 'vkExUnit' ); ?> - <?php _e( 'Displays a categories, tags or format list.', 'vkExUnit' ); ?></li> |
| 285 | <li>VK_<?php _e( 'archive list', 'vkExUnit' ); ?> - <?php _e( 'Displays a list of archives. You can choose the post type and also to display archives by month or by year.' , 'vkExUnit' ); ?></li> |
| 286 | </ul> |
| 287 | </div><!-- [ /.plugin-description ] --> |
| 288 | </td> |
| 289 | </tr> |
| 290 | |
| 291 | <!-- [ CSS cosutomize ] --> |
| 292 | <tr<?php echo (isset($options['active_css_customize']) && $options['active_css_customize'])? ' class="active"': ' class="inactive"'; ?>> |
| 293 | <th scope='row' class='check-column'> |
| 294 | <label class='screen-reader-text' for='checkbox_active_css_customize' > |
| 295 | <?php _e('Choose other widgets.', 'vkExUnit'); ?> |
| 296 | </label> |
| 297 | <input type="checkbox" name="vkExUnit_common_options[active_css_customize]" id="checkbox_active_css_customize" value="true" <?php echo (isset($options['active_css_customize']) && $options['active_css_customize'])? 'checked': ''; ?> /> |
| 298 | </th> |
| 299 | <td class='plugin-title'> |
| 300 | <strong><?php _e('CSS customize', 'vkExUnit');?></strong> |
| 301 | <?php if (isset($options['active_css_customize']) && $options['active_css_customize']) : ?> |
| 302 | |
| 303 | <span> |
| 304 | <a href="<?php echo admin_url().'admin.php?page=vkExUnit_css_customize';?>"> |
| 305 | <?php _e('Setting','vkExUnit');?> |
| 306 | </a></span> |
| 307 | |
| 308 | <?php endif; ?> |
| 309 | </td> |
| 310 | <td class='column-description desc'> |
| 311 | <div class='plugin-description'> |
| 312 | <p><?php _e('You can set Customize CSS.', 'vkExUnit'); ?></p> |
| 313 | </div><!-- [ /.plugin-description ] --> |
| 314 | </td> |
| 315 | </tr> |
| 316 | |
| 317 | <!-- [ AUTO Eye Catch ] --> |
| 318 | <tr<?php echo (isset($options['active_auto_eyecatch']) && $options['active_auto_eyecatch'])? ' class="active"': ' class="inactive"'; ?>> |
| 319 | <th scope='row' class='check-column'> |
| 320 | <label class='screen-reader-text' for='checkbox_active_auto_eyecatch' > |
| 321 | <?php _e('Automatic Eye Catch insert', 'vkExUnit'); ?> |
| 322 | </label> |
| 323 | <input type="checkbox" name="vkExUnit_common_options[active_auto_eyecatch]" id="checkbox_active_auto_eyecatch" value="true" <?php echo (isset($options['active_auto_eyecatch']) && $options['active_auto_eyecatch'])? 'checked': ''; ?> /> |
| 324 | </th> |
| 325 | <td class='plugin-title'> |
| 326 | <strong><?php _e('Automatic Eye Catch insert', 'vkExUnit'); ?></strong> |
| 327 | </td> |
| 328 | <td class='column-description desc'> |
| 329 | <div class='plugin-description'> |
| 330 | <p><?php _e('Display Eye Catch image at before content.', 'vkExUnit'); ?></p> |
| 331 | </div><!-- [ /.plugin-description ] --> |
| 332 | </td> |
| 333 | </tr> |
| 334 | |
| 335 | |
| 336 | |
| 337 | <!-- [ Insert ads ] --> |
| 338 | <tr<?php echo (isset($options['active_insert_ads']) && $options['active_insert_ads'])? ' class="active"': ' class="inactive"'; ?>> |
| 339 | <th scope='row' class='check-column'> |
| 340 | <label class='screen-reader-text' for='checkbox_insert_ads' > |
| 341 | <?php _e('Insert ads', 'vkExUnit'); ?> |
| 342 | </label> |
| 343 | <input type="checkbox" name="vkExUnit_common_options[active_insert_ads]" id="checkbox_insert_ads" value="true" <?php echo (isset($options['active_insert_ads']) && $options['active_insert_ads'])? 'checked': ''; ?> /> |
| 344 | </th> |
| 345 | <td class='plugin-title'> |
| 346 | <strong><?php _e('Insert ads', 'vkExUnit'); ?></strong> |
| 347 | <span> |
| 348 | <a href="<?php echo admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_Ads';?>"> |
| 349 | <?php _e('Setting','vkExUnit');?> |
| 350 | </a></span> |
| 351 | </td> |
| 352 | <td class='column-description desc'> |
| 353 | <div class='plugin-description'> |
| 354 | <p><?php _e('Insert ads to content.', 'vkExUnit'); ?></p> |
| 355 | </div><!-- [ /.plugin-description ] --> |
| 356 | </td> |
| 357 | </tr> |
| 358 | |
| 359 | </tbody> |
| 360 | |
| 361 | <tfoot> |
| 362 | |
| 363 | <tr> |
| 364 | <th scope='col' class='manage-column column-cb check-column'><label class="screen-reader-text" for="cb-select-all-2"><?php _e('Select all','vkExUnit');?></label><input id="cb-select-all-2" type="checkbox" /></th><th scope='col' class='manage-column column-name'><?php _e('Function', 'vkExUnit');?></th><th scope='col' class='manage-column column-description'><?php _e('Description','vkExUnit');?></th> |
| 365 | </tr> |
| 366 | </tfoot> |
| 367 | |
| 368 | </table> |
| 369 | <?php submit_button(); ?> |
| 370 | </form> |
| 371 | </div><!-- [ /.adminMain ] --> |
| 372 | <div class="adminSub"> |
| 373 | <div class="exUnit_infoBox"><?php vkExUnit_news_body(); ?></div> |
| 374 | </div><!-- [ /.adminSub ] --> |
| 375 | </div> |