# jobwp/2.3.9/admin/view/partial/job-info.php

JobWP – Job Board Plugin for WordPress | Job Listings, Career Page &amp; Applications, version 2.3.9. 114 lines.

- Page: https://pluginprobe.com/plugins/jobwp/2.3.9/code/admin/view/partial/job-info.php
- Raw: https://pluginprobe.com/plugins/jobwp/2.3.9/raw/admin/view/partial/job-info.php
- Modified: 2025-01-28T15:28:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jobwp/2.3.9/code/admin/view/partial/job-info.php#L10-L20`.

```php
<?php

if ( !defined( 'ABSPATH' ) ) {
    exit;
}
?>
<table class="form-table">
    <tr class="jobwp_company">
        <th scope="row">
            <label for="jobwp_company"><?php 
_e( 'Select Company', JOBWP_TXT_DOMAIN );
?></label>
        </th>
        <td>
            <?php 
?>
                <span><?php 
echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
?></span>
                <?php 
?>
        </td>
    </tr>
    <tr class="jobwp_experience">
        <th scope="row">
            <label for="jobwp_experience"><?php 
_e( 'Year of Experience', JOBWP_TXT_DOMAIN );
?></label>
        </th>
        <td>
            <input type="text" name="jobwp_experience" value="<?php 
esc_attr_e( $jobwp_experience );
?>" class="regular-text">
        </td>
    </tr>
    <tr class="jobwp_vacancies">
        <th scope="row">
            <label for="jobwp_vacancies"><?php 
_e( 'No. of Vacancies', JOBWP_TXT_DOMAIN );
?></label>
        </th>
        <td>
            <input type="number" min="1" max="20" step="1" name="jobwp_vacancies" value="<?php 
echo esc_attr( $jobwp_vacancies );
?>" class="regular-text">
        </td>
    </tr>
    <tr class="jobwp_deadline">
        <th scope="row">
            <label for="jobwp_deadline"><?php 
_e( 'Deadline', JOBWP_TXT_DOMAIN );
?></label>
        </th>
        <td>
            <input type="text" name="jobwp_deadline" id="jobwp_deadline" value="<?php 
esc_attr_e( $jobwp_deadline );
?>" class="medium-text" readonly>
        </td>
    </tr>
    <tr class="jobwp_application_url">
        <th scope="row">
            <label for="jobwp_application_url"><?php 
_e( 'External Apply Now URL', JOBWP_TXT_DOMAIN );
?></label>
        </th>
        <td>
            <?php 
?>
                <span><?php 
echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
?></span>
                <?php 
?>
        </td>
    </tr>
    <tr class="jobwp_is_featured_job">
        <th scope="row">
            <label for="jobwp_is_featured_job"><?php 
_e( 'Featured Job', JOBWP_TXT_DOMAIN );
?></label>
        </th>
        <td>
            <?php 
?>
                <span><?php 
echo '<a href="' . job_fs()->get_upgrade_url() . '">' . __( 'Please Upgrade Now', 'jobwp' ) . '</a>';
?></span>
                <?php 
?>
        </td>
    </tr>
    <tr class="jobwp_status">
        <th scope="row">
            <label for="jobwp_status"><?php 
_e( 'Status', JOBWP_TXT_DOMAIN );
?></label>
        </th>
        <td>
            <input type="radio" name="jobwp_status" class="jobwp_status" id="jobwp_status_active" value="active" <?php 
echo ( 'inactive' !== esc_attr( $jobwp_status ) ? 'checked' : '' );
?> >
            <label for="jobwp_status_active"><span></span><?php 
_e( 'Active', JOBWP_TXT_DOMAIN );
?></label>
            &nbsp;&nbsp;
            <input type="radio" name="jobwp_status" class="jobwp_status" id="jobwp_status_inactive" value="inactive" <?php 
echo ( 'inactive' === esc_attr( $jobwp_status ) ? 'checked' : '' );
?> >
            <label for="jobwp_status_inactive"><span></span><?php 
_e( 'Inactive', JOBWP_TXT_DOMAIN );
?></label>
        </td>
    </tr>
</table>
```
