HOME


Mini Shell 1.0
DIR: /home/islapiiu/sites/araliyagardens/admin/delete/ajax/
Upload File :
Current File : /home/islapiiu/sites/araliyagardens/admin/delete/ajax/facilities_photo.php
<?php

include_once(dirname(__FILE__) . '/../../../class/include.php');
include_once(dirname(__FILE__) . '/../../auth.php');

if ($_POST['option'] == 'delete') {

    $FACILITIES_PHOTO = new FacilitiesPhoto($_POST['id']);

    unlink('../../../upload/facilities/gallery/' . $FACILITIES_PHOTO->image_name);
    unlink('../../../upload/facilities/gallery/thumb/' . $FACILITIES_PHOTO->image_name);

    $result = $FACILITIES_PHOTO->delete();


    if ($result) {

        $data = array("status" => TRUE);
        header('Content-type: application/json');
        echo json_encode($data);
    }
}