This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
lilac/classes/NagiosEscalation.php

32 lines
726 B
PHP
Raw Normal View History

2011-08-18 16:54:38 +02:00
<?php
require_once 'om/BaseNagiosEscalation.php';
/**
* Skeleton subclass for representing a row from the 'nagios_escalation' table.
*
* Nagios Escalation
*
* This class was autogenerated by Propel on:
*
* Thu Dec 13 21:25:24 2007
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package
*/
class NagiosEscalation extends BaseNagiosEscalation {
public function setEscalationPeriodByName($name) {
$timeperiod = NagiosTimeperiodPeer::getByName($name);
if(!$timeperiod)
return false;
return $timeperiod;
}
} // NagiosEscalation