Example #1
0
<?php

$header = 'Recruitment :: Manage';
require_once '_header.php';
$objProject = new Project();
$projects = $objProject->getUpcomingProjects();
?>
    <h1><?php 
echo $header;
?>
</h1>

    <h2>Current Recruitment</h2>          

                    
        <table cellpadding="0" cellspacing="0" border="0" style="width:100%;" data-object="recruitment">
            <tr>
                <th>Project</th>
                <th>Position</th>
                <th>Team</th>
                <th>Deadline</th>
                <th>Status</th>
                <th colspan="2">Action</th>
            </tr>
            <tbody class="recruitmentList reloadSection" data-plugin="recruitment_current">
                <?php 
echo Plugin::get('recruitment_current');
?>
                
            </tbody>