mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-23 19:37:23 +08:00
agnet allow deny clear cahce after delete + VIP above never demotion
This commit is contained in:
@@ -74,6 +74,11 @@ class AgentAllowResource extends Resource
|
|||||||
])
|
])
|
||||||
->actions([
|
->actions([
|
||||||
Tables\Actions\EditAction::make(),
|
Tables\Actions\EditAction::make(),
|
||||||
|
Tables\Actions\DeleteAction::make()->using(function ($record) {
|
||||||
|
$record->delete();
|
||||||
|
clear_agent_allow_deny_cache();
|
||||||
|
return redirect(self::getUrl());
|
||||||
|
})
|
||||||
])
|
])
|
||||||
->bulkActions([
|
->bulkActions([
|
||||||
Tables\Actions\DeleteBulkAction::make(),
|
Tables\Actions\DeleteBulkAction::make(),
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
namespace App\Filament\Resources\System\AgentAllowResource\Pages;
|
namespace App\Filament\Resources\System\AgentAllowResource\Pages;
|
||||||
|
|
||||||
use App\Filament\Resources\System\AgentAllowResource;
|
use App\Filament\Resources\System\AgentAllowResource;
|
||||||
|
use App\Models\NexusModel;
|
||||||
use Filament\Pages\Actions;
|
use Filament\Pages\Actions;
|
||||||
use Filament\Resources\Pages\EditRecord;
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
|
||||||
@@ -13,7 +14,11 @@ class EditAgentAllow extends EditRecord
|
|||||||
protected function getActions(): array
|
protected function getActions(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
Actions\DeleteAction::make(),
|
Actions\DeleteAction::make()->using(function ($record) {
|
||||||
|
$record->delete();
|
||||||
|
clear_agent_allow_deny_cache();
|
||||||
|
return redirect(AgentAllowResource::getUrl());
|
||||||
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -62,6 +62,11 @@ class AgentDenyResource extends Resource
|
|||||||
])
|
])
|
||||||
->actions([
|
->actions([
|
||||||
Tables\Actions\EditAction::make(),
|
Tables\Actions\EditAction::make(),
|
||||||
|
Tables\Actions\DeleteAction::make()->using(function ($record) {
|
||||||
|
$record->delete();
|
||||||
|
clear_agent_allow_deny_cache();
|
||||||
|
return redirect(self::getUrl());
|
||||||
|
})
|
||||||
])
|
])
|
||||||
->bulkActions([
|
->bulkActions([
|
||||||
Tables\Actions\DeleteBulkAction::make(),
|
Tables\Actions\DeleteBulkAction::make(),
|
||||||
|
|||||||
@@ -13,7 +13,11 @@ class EditAgentDeny extends EditRecord
|
|||||||
protected function getActions(): array
|
protected function getActions(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
Actions\DeleteAction::make(),
|
Actions\DeleteAction::make()->using(function ($record) {
|
||||||
|
$record->delete();
|
||||||
|
clear_agent_allow_deny_cache();
|
||||||
|
return redirect(AgentDenyResource::getUrl());
|
||||||
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+11
-3
@@ -729,7 +729,7 @@ function docleanup($forceAll = 0, $printProgress = false) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//remove VIP status if time's up
|
//remove VIP status if time's up
|
||||||
$res = sql_query("SELECT id, modcomment FROM users WHERE vip_added='yes' AND vip_until < NOW()") or sqlerr(__FILE__, __LINE__);
|
$res = sql_query("SELECT id, modcomment, class FROM users WHERE vip_added='yes' AND vip_until < NOW()") or sqlerr(__FILE__, __LINE__);
|
||||||
if (mysql_num_rows($res) > 0)
|
if (mysql_num_rows($res) > 0)
|
||||||
{
|
{
|
||||||
while ($arr = mysql_fetch_assoc($res))
|
while ($arr = mysql_fetch_assoc($res))
|
||||||
@@ -742,8 +742,16 @@ function docleanup($forceAll = 0, $printProgress = false) {
|
|||||||
$modcomment = date("Y-m-d") . " - VIP status removed by - AutoSystem.\n". $modcomment;
|
$modcomment = date("Y-m-d") . " - VIP status removed by - AutoSystem.\n". $modcomment;
|
||||||
$modcom = sqlesc($modcomment);
|
$modcom = sqlesc($modcomment);
|
||||||
///---end
|
///---end
|
||||||
sql_query("UPDATE users SET class = '1', vip_added = 'no', vip_until = null, modcomment = $modcom WHERE id = {$arr['id']}") or sqlerr(__FILE__, __LINE__);
|
if ($arr['class'] > \App\Models\User::CLASS_VIP) {
|
||||||
sql_query("INSERT INTO messages (sender, receiver, added, msg, subject) VALUES(0, {$arr['id']}, $dt, $msg, $subject)") or sqlerr(__FILE__, __LINE__);
|
/**
|
||||||
|
* @since 1.8
|
||||||
|
* never demotion VIP above
|
||||||
|
*/
|
||||||
|
sql_query("UPDATE users SET vip_added = 'no', vip_until = null, modcomment = $modcom WHERE id = {$arr['id']}") or sqlerr(__FILE__, __LINE__);
|
||||||
|
} else {
|
||||||
|
sql_query("UPDATE users SET class = '1', vip_added = 'no', vip_until = null, modcomment = $modcom WHERE id = {$arr['id']}") or sqlerr(__FILE__, __LINE__);
|
||||||
|
sql_query("INSERT INTO messages (sender, receiver, added, msg, subject) VALUES(0, {$arr['id']}, $dt, $msg, $subject)") or sqlerr(__FILE__, __LINE__);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$log = "remove VIP status if time's up";
|
$log = "remove VIP status if time's up";
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
defined('VERSION_NUMBER') || define('VERSION_NUMBER', '1.8.0');
|
defined('VERSION_NUMBER') || define('VERSION_NUMBER', '1.8.0');
|
||||||
defined('RELEASE_DATE') || define('RELEASE_DATE', '2023-04-13');
|
defined('RELEASE_DATE') || define('RELEASE_DATE', '2023-04-15');
|
||||||
defined('IN_TRACKER') || define('IN_TRACKER', false);
|
defined('IN_TRACKER') || define('IN_TRACKER', false);
|
||||||
defined('PROJECTNAME') || define("PROJECTNAME","NexusPHP");
|
defined('PROJECTNAME') || define("PROJECTNAME","NexusPHP");
|
||||||
defined('NEXUSPHPURL') || define("NEXUSPHPURL","https://nexusphp.org");
|
defined('NEXUSPHPURL') || define("NEXUSPHPURL","https://nexusphp.org");
|
||||||
|
|||||||
Reference in New Issue
Block a user