https://t.me/RX1948
Server : Apache/2.4.18 (Ubuntu)
System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64
User : oppastar ( 1041)
PHP Version : 7.0.33-0ubuntu0.16.04.15
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
Directory :  /var/www/asietex.co.id/public_html/application/views/admin/career/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/asietex.co.id/public_html/application/views/admin/career/index.php
<div class="row">
    <div class="col-sm-12">
        <p><a href="<?= base_url('admin/dashboard'); ?>"><i class="fa fa-arrow-left" aria-hidden="true"></i> Back to Dashboard</a></p><br>
        <h2>Career Administration</h2>
        <?= $this->session->flashdata('success'); //to display success message ?> 
        <?= $this->session->flashdata('result'); //to display result message ?> 
    </div><!-- end class="col-sm-12" -->
</div> <!-- end row --> 

<?= form_open_multipart(); ?>  
<div class="row">
    <div class="col-sm-3">
        <h4>Landing Page Banner</h4> 
        <p>Banner Image<br>
        <?php if (!empty($career_landingpage->career_landingpage_image)) : ?>
            &nbsp;&nbsp;<img style="width:200px; height:auto;" src="<?= base_url() . 'uploads/career/' . $career_landingpage->career_landingpage_image; ?>"  alt="" />
            <br><i class="fa fa fa-trash-o" aria-hidden="true"></i> <a href="<?= base_url() . 'admin/career/delete_landingpage_image'; ?>">Delete</a>
        <?php endif; ?></p>  
    </div><!-- end class="col-sm-4" -->

     <div class="col-sm-9">
        <input type="file" name="userfile" size="20" class="btn btn-default btn-file form-control" />
            <?php
                //get max image width and height from configuration table
                /* $this->db->select('career_image_width, career_image_height')->from('configuration')->where('id_configuration', 1);
                $image_dimension = $this->db->get()->row(); */
            ?> 
            <span style="font-size:12px; font-style: italic;">Image size must be max of 1920 pixel width. 600 pixel height, jpg/png, max 300KB</span>
            <span style="color:#F7931E;"><?php echo form_error('userfile'); ?></span>
           <?php echo $this->session->flashdata('banner_error'); //to display error message ?> 
    </div><!-- end class="col-sm-8" -->
</div> <!-- end row -->   

<div class="row" style="display:none;"> 
    <div class="col-sm-3">
        <p>Banner Link<br>
          (full URL. Eg: http://www.myshop.com/career/running)</p>
    </div><!-- end class="col-sm-4" -->

     <div class="col-sm-9">
        <p>
        <?php 
        $data = array(
          'name'        => 'banner_link',
          'value'       => $career_landingpage->career_landingpage_link,
          'class'       => 'form-control'
        );
        echo form_input($data); ?>
        <?php echo form_error('banner_link'); ?></p>
    </div><!-- end class="col-sm-8" -->
</div> <!-- end row -->   

<div class="row">
    <div class="col-sm-3">
        <p>career Description</p>
    </div><!-- end class="col-sm-4" -->

     <div class="col-sm-9">
        
        <div class="tabbable">

           <ul class="nav nav-tabs">
              <li class="active"><a href="#description_id" data-toggle="tab">Indonesian</a></li>
              <li><a href="#description_en" data-toggle="tab">English</a></li>
          </ul>

          <div class="tab-content">
            
             <div class="tab-pane active" id="description_id">
                 <?php echo form_textarea('description', set_value('description', 
                  $career_landingpage->career_landingpage_description, FALSE)); ?>
                 <?php echo form_error('description'); ?>
             </div><!-- end  id="#description_id" -->

              <div class="tab-pane" id="description_en">
                <?php echo form_textarea('description_en', set_value('description_en', 
                  $career_landingpage->career_landingpage_description_en, FALSE)); ?>
                 <?php echo form_error('description_en'); ?>
             </div><!-- end  id="#description_id" -->
          </div><!-- end class tab-content-->  

        </div><!-- end tabbable -->
        <br>
        <p> <?= form_submit('submit', 'Update Banner', 'class="btn btn-primary btn-success button-brown"'); ?></p> 
    </div><!-- end class="col-sm-8" -->
</div> <!-- end row -->   
<?= form_close(); ?>   

<div class="row">
    <div class="col-sm-12">
        <br>
        <p><?= anchor('admin/career/add', '<i class="fa fa-plus" aria-hidden="true"></i> ADD A NEW CAREER'); ?></p> 
    </div><!-- end class="col-sm-12" -->
</div> <!-- end row -->   

<div class="row">
    <div class="col-sm-12">
       <div class="table-responsive">  
       <table class="table table-striped">
        <thead> 
            <tr>
                <th>Position Name</th> 
                <th>Ordering</th>
                <th>Display</th>
                <th>Edit</th>
                <th>Delete</th>
            </tr>
        </thead>
        <tbody>
            <?php if(count($parent_career)) : ?> 
                <?php foreach($parent_career as $career): ?>
                    <tr>
                        <td><?= ucfirst($career->position); ?></td>
                        <td><?= $career->priority; ?></td>
                        <td>
                            <?php
                                if ($career->status == 1) {
                                    echo 'Yes';
                                }
                                else {
                                    echo 'No';
                                }      
                            ?>
                        </td>
                        
                        <td><?= bt_edit('admin/career/edit/' . $career->id_career); ?></td>
                        <td><?= bt_delete('admin/career/delete/' . $career->id_career); ?></td>
                    </tr>
                <?php endforeach; ?>
            <?php else: ?>
                <tr>
                <td colspan="3">We could not find any career.</td>
                </tr>
            <?php endif; ?>

        </tbody> 
    </table>
    </div><!-- end table class responsive -->
    </div><!-- end class="col-sm-12" -->
</div> <!-- end row -->    


<div class="row">
    <div class="col-sm-12">
        <?php
        //create pagination...
        echo '<p style="text-align:center;">' . $this->pagination->create_links() . '</p>';
        ?>
    </div><!-- end class="col-sm-12" -->
</div> <!-- end row -->  

https://t.me/RX1948 - 2025