( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ
<?php
/*
* Copyright (c) 2026 AltumCode (https://altumcode.com/)
*
* This software is licensed exclusively by AltumCode and is sold only via https://altumcode.com/.
* Unauthorized distribution, modification, or use of this software without a valid license is not permitted and may be subject to applicable legal actions.
*
* 🌍 View all other existing AltumCode projects via https://altumcode.com/
* 📧 Get in touch for support or general queries via https://altumcode.com/contact
* 📤 Download the latest version via https://altumcode.com/downloads
*
* 🐦 X/Twitter: https://x.com/AltumCode
* 📘 Facebook: https://facebook.com/altumcode
* 📸 Instagram: https://instagram.com/altumcode
*/
namespace Altum\Controllers;
use Altum\Alerts;
use Altum\Title;
defined('ALTUMCODE') || die();
class ImageUpdate extends Controller {
public function index() {
\Altum\Authentication::guard();
if(!\Altum\Plugin::is_active('aix') || !settings()->aix->images_is_enabled) {
throw_404();
}
/* Team checks */
if(\Altum\Teams::is_delegated() && !\Altum\Teams::has_access('update.images')) {
Alerts::add_error(l('global.info_message.team_no_access'));
redirect('dashboard');
}
$image_id = isset($this->params[0]) ? (int) $this->params[0] : null;
/* Get image details */
if(!$image = db()->where('image_id', $image_id)->where('user_id', $this->user->user_id)->getOne('images')) {
throw_404();
}
$image->settings = json_decode($image->settings ?? '');
$image->variants_ids = json_decode($image->variants_ids ?? '');
/* Get available variants if needed */
$image->variants_ids = array_diff($image->variants_ids ?? [], [$image->image_id]);
$variants = null;
if(count($image->variants_ids)) {
$variants = db()->where('image_id', $image->variants_ids, 'IN')->get('images');
}
/* Get available projects */
$projects = (new \Altum\Models\Projects())->get_projects_by_user_id($this->user->user_id);
if(!empty($_POST)) {
$_POST['name'] = input_clean($_POST['name'], 64);
$_POST['project_id'] = !empty($_POST['project_id']) && array_key_exists($_POST['project_id'], $projects) ? (int) $_POST['project_id'] : null;
//ALTUMCODE:DEMO if(DEMO) if($this->user->user_id == 1) Alerts::add_error('Please create an account on the demo to test out this function.');
/* Check for any errors */
$required_fields = ['name'];
foreach($required_fields as $field) {
if(!isset($_POST[$field]) || trim($_POST[$field]) === '') {
Alerts::add_field_error($field, l('global.error_message.empty_field'));
}
}
if(!\Altum\Csrf::check()) {
Alerts::add_error(l('global.error_message.invalid_csrf_token'));
}
if(!Alerts::has_field_errors() && !Alerts::has_errors()) {
/* Database query */
db()->where('image_id', $image->image_id)->update('images', [
'project_id' => $_POST['project_id'],
'name' => $_POST['name'],
'last_datetime' => get_date(),
]);
/* Set a nice success message */
Alerts::add_success(sprintf(l('global.success_message.update1'), '<strong>' . $_POST['name'] . '</strong>'));
redirect('image-update/' . $image->image_id);
}
}
/* Set a custom title */
Title::set(sprintf(l('image_update.title'), $image->name));
/* Main View */
$data = [
'image' => $image,
'variants' => $variants,
'projects' => $projects ?? [],
];
$view = new \Altum\View(\Altum\Plugin::get('aix')->path . 'views/image-update/index', (array) $this, true);
$this->add_view_content('content', $view->run($data));
}
}