9f95ec2285d496870b9b92d8023b95893a6c3172
[infodrom.org/service.infodrom.org] / class / accountname.class.php
1 <?php
2
3 class AccountName extends DatabaseTable {
4
5   public function __construct($id)
6   {
7     if (is_numeric($id))
8       parent::__construct('account_names', $id);
9     else
10       parent::__construct('account_names', $id, 'blz_kto');
11   }
12
13 }
14
15 ?>