Jump to content

Featured Replies

Вообщем проблема такая..

 

post-13303-0-73678900-1417605990_thumb.p

Хочу замутить такое.. но мозгов не хватает.. 

С чего начать?

<?php


/**
* mojPierwszyHook
*
* @author Mateusz Pater
* @copyright teez
* @version 2013
* @access public
*/
class tz34_lastbans
{
private $registry; 
private $settings; 

public function __construct()
{
$this->registry = ipsRegistry::instance();
$this->settings =& $this->registry->fetchSettings();
}

public function getOutput()
{
if( ! $this->settings['tz34_last_bans_on'] )
{
return false;
}
$user = $this->settings['tz34_last_bans_user'];
$host = $this->settings['tz34_last_bans_host'];
$baza = $this->settings['tz34_last_bans_database'];
$haslo = $this->settings['tz34_last_bans_password'];
$limit = $this->settings['tz34_last_bans_limit'];
$title = $this->settings['tz34_last_bans_title'];
$connection = @mysql_connect($host, $user, $haslo) or die(mysql_error());
$db = @mysql_select_db($baza, $connection) or die(mysql_error());

$z = "SELECT * from amx_bans order by bid DESC limit $limit";
$o = mysql_query($z);
$sum = mysql_num_rows($o);
if ($sum > 0)
{
while($row = mysql_fetch_array($o))
{
$nick = $row['player_nick'];
$czas = $row['ban_length'];
if ($czas == 0)
{
$bi1['_ban_length'] = 'Permanent';

}
elseif ($czas == -1)
{
$bi1['_ban_length'] = 'Permanent';
}
elseif ($czas > 59)
{
$bi1['__ban_length'] = $czas / 60;
$bi1['_ban_length'] = ''.$bi1['__ban_length'].' godzin';
if ($bi1['__ban_length'] == 168)
{
$bi1['_ban_length'] = 'tydzień';
}
}
else
{
$bi1['_ban_length'] = ''.$czas.' minut';
}
$serwer = explode("@", $row['server_name']);
$admin = $row['admin_nick'];
$powod = $row['ban_reason'];
$data[] = array
(
"nick" => $nick,
"czas" => $bi1['_ban_length'],
"serwer" => $serwer[0],
"admin" => $admin,
"powod" => $powod,
);
}
}
else
{
return "Brak banów w bazie";
}
return $this->registry->getClass( 'output' )->getTemplate( 'teez_apps' )->last_bans($data, $title);
} 
}
?>  

Вот код с хука tz34_lastbans. (вот хук мне вообще подходит на 90%.. вот  только хотелось бы чтобы он выдавал весь список, и можно было редактировать дизайн, и хотелось бы чтобы его можно было пихнуть на другие страницы форума, и только не хук! все в кодах..)

Можно его изменить чтобы он выдавал весь список забаненых на сервере?

Можно к нему подключить css чтобы редактировать дизайн?

Объясните пожалуйста как это сделать.. весь код целиком мне не нужно! (я не прошу вас написать все за меня), хочу сам сделать.. просто не понимаю как.. sad.png

Link to comment
https://ipbmafia.ru/topic/9809-ban-list-cs-16/
Share on other sites

С чего начать?
С изучения php/html/css/ipboard
Link to comment
https://ipbmafia.ru/topic/9809-ban-list-cs-16/?&do=findComment&comment=75173
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.


Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.