| Current Path : /home/giteleslfp/www/administrator/components/com_templateck/interfaces/ |
| Current File : /home/giteleslfp/www/administrator/components/com_templateck/interfaces/ajaxremovefavorite.php |
<?php
/**
* @name Template Creator CK
* @copyright Copyright (C) since 2011. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @author Cedric Keiflin - http://www.template-creator.com - http://www.joomlack.fr
*/
// No direct access to this file
defined('TCK_LOADED') or die();
$name = $this->input->get('name', '', 'string');
$msg = '';
if (!TCK_File::delete(TEMPLATECREATORCK_PATH . '/favorites/' . $name . '.fck3')) {
$msg = TCK_Text::_('CK_ERROR_DELETING_FAVORITEFILE');
$status = 0;
} else {
$status = 1;
}
echo '{"status": "' . $status . '", "msg": "' . $msg . '"}';
exit();