37 lines
1.4 KiB
PHP
37 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* function plugins_update to get
|
|
* plugins updates from the Database using pagination object.
|
|
*
|
|
* @author shubham meena mentored by Matthew Lagoe
|
|
*/
|
|
|
|
function plugins_update()
|
|
{
|
|
if ( Ticket_User :: isMod( unserialize( $_SESSION['ticket_user'] ) ) ) {
|
|
$pagination = new Pagination( "SELECT * FROM plugins INNER JOIN updates ON plugins.Id=updates.PluginId", "lib", 5, "Plugincache" );
|
|
$pageResult['plug'] = Gui_Elements :: make_table( $pagination -> getElements(), Array( "getId", "getPluginName", "getPluginInfo", "getUpdateInfo" ), Array( "id", "plugin_name", "plugin_info", "update_info" ) );
|
|
$pageResult['links'] = $pagination -> getLinks( 5 );
|
|
$pageResult['lastPage'] = $pagination -> getLast();
|
|
$pageResult['currentPage'] = $pagination -> getCurrent();
|
|
|
|
global $INGAME_WEBPATH;
|
|
$pageResult['ingame_webpath'] = $INGAME_WEBPATH;
|
|
|
|
// check if shard is online
|
|
try {
|
|
$dbs = new DBLayer( "shard" );
|
|
$pageResult['shard'] = "online";
|
|
}
|
|
catch( PDOException $e ) {
|
|
$pageResult['shard'] = "offline";
|
|
}
|
|
return( $pageResult );
|
|
} else {
|
|
// ERROR: No access!
|
|
$_SESSION['error_code'] = "403";
|
|
header("Cache-Control: max-age=1");
|
|
header( "Location: index.php?page=error" );
|
|
throw new SystemExit();
|
|
}
|
|
}
|