24 lines
449 B
PHP
24 lines
449 B
PHP
<?php
|
|
|
|
|
|
class Abrechnung extends IPSModule
|
|
{
|
|
public function Create()
|
|
{
|
|
// Never delete this line!
|
|
parent::Create();
|
|
|
|
$this->RegisterPropertyString('Users', '[]');
|
|
$this->RegisterPropertyString('PowerMeters', '[]');
|
|
$this->RegisterPropertyString('WaterMeters', '[]');
|
|
$this->RegisterPropertyString('Tariffs', '[]');
|
|
|
|
}
|
|
|
|
public function ApplyChanges()
|
|
{
|
|
parent::ApplyChanges();
|
|
}
|
|
|
|
|
|
} |