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.
vpslist/classes/class.paymentmethod.php

21 lines
448 B
PHP

<?php
if($_VPS !== true) { die("x"); }
class PaymentMethod extends CPHPDatabaseRecordClass
{
public $fill_query = "SELECT * FROM paymentmethods WHERE `Id` = '%d'";
public $verify_query = "SELECT * FROM paymentmethods WHERE `Id` = '%d'";
public $table_name = "paymentmethods";
public $prototype = array(
'string' => array(
'Name' => "Name",
'Icon' => "Icon"
),
'boolean' => array(
'IsAnonymous' => "Anonymous"
)
);
}
?>