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.
17 lines
372 B
PHP
17 lines
372 B
PHP
<?php
|
|
if($_VPS !== true) { die("x"); }
|
|
|
|
class VirtualizationTechnology extends CPHPDatabaseRecordClass
|
|
{
|
|
public $fill_query = "SELECT * FROM technologies WHERE `Id` = '%d'";
|
|
public $verify_query = "SELECT * FROM technologies WHERE `Id` = '%d'";
|
|
public $table_name = "technologies";
|
|
|
|
public $prototype = array(
|
|
'string' => array(
|
|
'Name' => "Name"
|
|
)
|
|
);
|
|
}
|
|
?>
|