Esempio n. 1
0
<?php

/**
 * Developed by Jay Gaha
 * http://jaygaha.com.np
 */
include 'includes/inc.php';
include "includes/classes/class.artist.php";
$artist = new Artist();
if ($_SERVER['REQUEST_METHOD'] == 'GET') {
    $del_id = isset($_GET['del_id']) ? $_GET['del_id'] : 0;
    $checkRow = $artist->get_row($del_id);
    if (is_array($checkRow)) {
        $data['cover'] = checkImagexists('../../uploads/', 'artistcover_' . $checkRow['id']);
        $data['pic'] = checkImagexists('../../uploads/', 'artistpic_' . $checkRow['id']);
        $data['pic1'] = checkImagexists('../../uploads/', 'artistpic1_' . $checkRow['id']);
        $data['pic2'] = checkImagexists('../../uploads/', 'artistpic2_' . $checkRow['id']);
        $deleteRow = $artist->delete_row($del_id);
        //delete from properties
        $artist->delete_rows_properties($del_id);
        //delete from social
        $artist->delete_rows_social($del_id);
        if ($data['cover']) {
            unlink('../../uploads/artistcover_' . $checkRow['id'] . '.jpg');
        }
        if ($data['pic']) {
            unlink('../../uploads/artistpic_' . $checkRow['id'] . '.jpg');
        }
        if ($data['pic1']) {
            unlink('../../uploads/artistpic1_' . $checkRow['id'] . '.jpg');
        }
Esempio n. 2
0
     } else {
         $is_valid = $company->getCompanyByEmail($com_email_check);
         if ($is_valid) {
             echo "false";
         } else {
             echo "true";
         }
     }
 }
 //email check for artist
 if (!is_null($art_email_check)) {
     include "includes/classes/class.artist.php";
     $artist = new Artist();
     $id = isset($_GET['id']) ? $_GET['id'] : null;
     if ($id > 0) {
         $data = $artist->get_row($id);
         $oemail = $data['email'];
         if ($oemail == $art_email_check) {
             echo "true";
         } else {
             $is_valid = $artist->getArtistByEmail($art_email_check);
             if ($is_valid) {
                 echo "false";
             } else {
                 echo "true";
             }
         }
     } else {
         $is_valid = $artist->getArtistByEmail($art_email_check);
         if ($is_valid) {
             echo "false";
Esempio n. 3
0
 * http://jaygaha.com.np
 */
include 'includes/inc.php';
include "includes/classes/class.artist.php";
$artist = new Artist();
//new
$data['formStatus'] = 'new';
$data['id'] = 0;
$data['cid'] = 0;
$data['caid'] = 0;
$data['gid'] = 0;
$data['fid'] = 0;
$data['atype'] = '';
if ($_SERVER['REQUEST_METHOD'] == 'GET') {
    $id = isset($_GET['id']) ? $_GET['id'] : 0;
    $checkRow = $artist->get_row($id);
    if (is_array($checkRow)) {
        $data['formStatus'] = 'edit';
        $data['row'] = $checkRow;
        $data['id'] = $checkRow['id'];
        $data['cid'] = $checkRow['com_id'];
        $data['atype'] = $checkRow['atype'];
        $data['cover'] = checkImagexists('../../uploads/', 'artistcover_' . $checkRow['id']);
        $data['pic'] = checkImagexists('../../uploads/', 'artistpic_' . $checkRow['id']);
        $data['pic1'] = checkImagexists('../../uploads/', 'artistpic1_' . $checkRow['id']);
        $data['pic2'] = checkImagexists('../../uploads/', 'artistpic2_' . $checkRow['id']);
    }
}
$data['companies'] = $artist->getCompaniesForSelect($data['cid']);
$data['categories'] = $artist->getCategoriesForSelect('category', $data['id']);
$data['genre'] = $artist->getCategoriesForSelect('genre', $data['id']);