Files
Symcon_Belevo_Energiemanage…/Abrechnung/module.php
T
2025-11-03 15:26:19 +01:00

27 lines
546 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();
}
// Called by the button in form.json
public function GenerateInvoices($data)
{
}
}