koblog/bl-kernel/ajax/logo-remove.php
2025-01-18 09:06:54 +01:00

22 lines
No EOL
443 B
PHP

<?php defined('KOBLOG') or die('Koblog CMS.');
header('Content-Type: application/json');
/*
| Delete the site logo
| This script delete the file and set and empty string in the database
|
| @return array
*/
// Delete the file
$logoFilename = $site->logo(false);
if ($logoFilename) {
Filesystem::rmfile(PATH_UPLOADS.$logoFilename);
}
// Remove the logo from the database
$site->set(array('logo'=>''));
ajaxResponse(0, 'Logo removed.');
?>