You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
491 B
PHTML
23 lines
491 B
PHTML
13 years ago
|
<?php
|
||
|
if($_VPS !== true) { die("x"); }
|
||
|
|
||
|
class Country extends CPHPDatabaseRecordClass
|
||
|
{
|
||
|
public $fill_query = "SELECT * FROM countries WHERE `Id` = '%d'";
|
||
|
public $verify_query = "SELECT * FROM countries WHERE `Id` = '%d'";
|
||
|
public $table_name = "countries";
|
||
|
|
||
|
public $prototype = array(
|
||
|
'string' => array(
|
||
|
'Name' => "name",
|
||
|
'PrintableName' => "printable_name",
|
||
|
'Iso' => "iso",
|
||
|
'Iso3' => "iso3"
|
||
|
),
|
||
|
'numeric' => array(
|
||
|
'NumericCode' => "numcode"
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
?>
|