One Hat Cyber Team
Your IP :
216.73.216.152
Server IP :
27.254.111.200
Server :
Linux wh-sh59.csloxinfo.com 3.10.0-693.5.2.el7.x86_64 #1 SMP Fri Oct 20 20:32:50 UTC 2017 x86_64
Server Software :
Apache
PHP Version :
5.5.38
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
vhosts
/
oakwine.co.th
/
httpdocs
/
view
/
Slide
/
View File Name :
list.php
<?php SYS::DOMAIN("Slide"); SYS::DOMAIN("Product"); SYS::CONTROLLER("slideController"); SYS::ADDFUNCTION("display"); $slideInstanceList = new Slide(); $perPage = 20; $p = isset($_GET["p"]) ? $_GET["p"] : 1 ; $pageStart = ($p-1)*$perPage; ?> <div class="row"><div class="col-lg-12"> <div class="box box-info"> <div class="box-header with-border"> <!-- <h3 class="box-title">รายการข้อมูล ภาพสไลด์</h3> --> <div class="btn-group"> <a href="?page=Slide/create" class="btn bg-olive"><i class="fa fa-plus-circle"></i> เพิ่มข้อมูล ภาพสไลด์</a> </div> </div> <center><?php SYS::VIEW("Slide/slideShow"); ?></center> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>#</th> <th>ID</th> <th>ภาพสไลด์</th> <th>หัวข้อ</th> <th>รายละเอียด</th> <th>สินค้า</th> </tr> </thead> <tbody> <?php foreach($slideInstanceList->listBy(array("limit"=>"$pageStart,$perPage")) as $slideInstance){ ?> <tr> <td style="width:5%;"> <?php echo ($pageStart++) +1; ?> </td> <td style="width:5%;"> <a href="?page=Slide/show&id=<?php echo $slideInstance->id; ?>"><?php echo $slideInstance->id; ?></a> </td> <td> <a href='<?php echo CREATELINK::FILE("Slide/image/$slideInstance->image"); ?>' target="_bank"> <img src="<?php echo CREATELINK::FILE("Slide/image/$slideInstance->image"); ?>" alt="<?php echo $slideInstance->titleTh; ?>" width="150"> </a> </td> <td> <a href="?page=Slide/show&id=<?php echo $slideInstance->id; ?>"><?php echo $slideInstance->toString(); ?></a> </td> <td> <?php echo $slideInstance->descriptionTh; ?><hr><?php echo $slideInstance->descriptionEn; ?> </td> <td> <a href="?page=Product/show&id=<?php echo $slideInstance->instance("product")->id; ?>" target="_bank"><?php echo $slideInstance->instance("product")->toString(); ?></a> </td> </tr> <?php } ?> </tbody> </table> </div> <div class="col-lg-12"> <?php $params = array("page"=>"Slide/list"); echo paginate2($slideInstanceList->count(),$perPage,$params); ?> </div> </div> </div></div>