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.
22 lines
497 B
PHTML
22 lines
497 B
PHTML
13 years ago
|
<?php
|
||
|
if($_VPS !== true) { die("x"); }
|
||
|
|
||
|
class PlanPriceOption extends CPHPDatabaseRecordClass
|
||
|
{
|
||
|
public $fill_query = "SELECT * FROM plan_priceoptions WHERE `Id` = '%d'";
|
||
|
public $verify_query = "SELECT * FROM plan_priceoptions WHERE `Id` = '%d'";
|
||
|
public $table_name = "plan_priceoptions";
|
||
|
|
||
|
public $prototype = array(
|
||
|
'numeric' => array(
|
||
|
'BillingPeriod' => "BillingPeriod",
|
||
|
'Price' => "Price",
|
||
|
'PlanId' => "PlanId"
|
||
|
),
|
||
|
'plan' => array(
|
||
|
'Plan' => "PlanId"
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
?>
|