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/symphony-solusi.co.id/public_html/application/views/admin/beauty_tips/ |
Upload File : |
<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>Success Story Administration</h2> <?= $this->session->flashdata('success'); //to display success message ?> </div><!-- end class="col-sm-12" --> </div> <!-- end row --> <?= form_open_multipart(); ?> <div class="row" style="display: none;"> <div class="col-sm-3"> <h4>Story Landing Page Banner</h4> <p>Banner Image<br> <?php if (!empty($beauty_tips_landingpage->beauty_tips_landingpage_image)) : ?> <img style="width:200px; height:auto;" src="<?= base_url() . 'uploads/beauty_tips/' . $beauty_tips_landingpage->beauty_tips_landingpage_image; ?>" alt="" /><br> <i class="fa fa fa-trash-o" aria-hidden="true"></i> <a href="<?= base_url() . 'admin/beauty_tips/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" /> <span style="font-size:12px; font-style: italic;"> Image size must be max of 1200 pixel width. 300 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>Page Title</p> </div><!-- end class="col-sm-4" --> <div class="col-sm-9"> <p> <?php $data = array( 'name' => 'beauty_tips_landingpage_title', 'value' => $beauty_tips_landingpage->beauty_tips_landingpage_title, 'class' => 'form-control' ); echo form_input($data); ?> <?php echo form_error('beauty_tips_landingpage_title'); ?> </p> </div><!-- end class="col-sm-8" --> </div> <!-- end row --> <div class="row" style="display: none;"> <div class="col-sm-3"> </div><!-- end class="col-sm-4" --> <div class="col-sm-9"> <p> <?= form_submit('submit', 'Update', '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/beauty_tips/add', '<i class="fa fa-plus" aria-hidden="true"></i> ADD A NEW STORY'); ?></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>Title</th> <th>Display</th> <th>Edit</th> <th>Delete</th> </tr> </thead> <tbody> <?php if (count($beauty_tips)) : ?> <?php foreach ($beauty_tips as $tips) : ?> <tr> <td><?= ucfirst($tips->beauty_tips); ?></td> <td> <?php if ($tips->status == 1) { echo 'Yes'; } else { echo 'No'; } ?> </td> <td><?= bt_edit('admin/beauty_tips/edit/' . $tips->id); ?></td> <td><?= bt_delete('admin/beauty_tips/delete/' . $tips->id); ?></td> </tr> <?php endforeach; ?> <?php else : ?> <tr> <td colspan="5">We could not find any beauty tips.</td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div>