add uploadspeed + downloadspeed +isp

This commit is contained in:
xiaomlove
2022-07-30 15:06:51 +08:00
parent 8a4f4a77cb
commit 1ed68b6058
28 changed files with 477 additions and 64 deletions
+21 -21
View File
@@ -14,75 +14,75 @@ class AdminpanelTableSeeder extends Seeder
*/
public function run()
{
\DB::table('adminpanel')->delete();
\DB::table('adminpanel')->insert(array (
0 =>
0 =>
array (
'id' => 1,
'name' => 'Add user',
'url' => 'adduser.php',
'info' => 'Create new user account',
),
1 =>
1 =>
array (
'id' => 3,
'name' => 'Reset Users Password',
'url' => 'reset.php',
'info' => 'Rest lost Passwords',
),
2 =>
2 =>
array (
'id' => 4,
'name' => 'Mass PM',
'url' => 'staffmess.php',
'info' => 'Send PM to all users',
),
3 =>
3 =>
array (
'id' => 6,
'name' => 'Poll overview',
'url' => 'polloverview.php',
'info' => 'View poll votes',
),
4 =>
4 =>
array (
'id' => 7,
'name' => 'Warned users',
'url' => 'warned.php',
'info' => 'See all warned users on tracker',
),
5 =>
array (
'id' => 8,
'name' => 'FreeLeech',
'url' => 'freeleech.php',
'info' => 'Set ALL Torrents At Special State.',
),
6 =>
// 5 =>
// array (
// 'id' => 8,
// 'name' => 'FreeLeech',
// 'url' => 'freeleech.php',
// 'info' => 'Set ALL Torrents At Special State.',
// ),
6 =>
array (
'id' => 9,
'name' => 'FAQ Management',
'url' => 'faqmanage.php',
'info' => 'Edit/Add/Delete FAQ Page',
),
7 =>
7 =>
array (
'id' => 10,
'name' => 'Rules Management',
'url' => 'modrules.php',
'info' => 'Edit/Add/Delete RULES Page',
),
8 =>
8 =>
array (
'id' => 11,
'name' => 'Category Manage',
'url' => 'catmanage.php',
'info' => 'Manage torrents categories at your site',
),
9 =>
9 =>
array (
'id' => 12,
'name' => 'Custom Field Manage',
@@ -90,7 +90,7 @@ class AdminpanelTableSeeder extends Seeder
'info' => 'Manage custom fields',
),
));
}
}
}