コード例 #1
0
ファイル: set_image.php プロジェクト: fulldump/8
<?php

print_r($_POST);
$item_id = $_POST['item_id'];
$image_id = $_POST['image_id'];
GraphicSlideshowItem::ROW($item_id)->setBackground(Image::ROW($image_id));
コード例 #2
0
ファイル: extended.class.php プロジェクト: fulldump/8
 public function getAll()
 {
     $where = "`Slideshow` = '" . Database::escape($this->getId()) . "' ORDER BY `Order`";
     return GraphicSlideshowItem::SELECT($where);
 }