本文整理匯總了PHP中eqLogic::byTypeAndSearhConfiguration方法的典型用法代碼示例。如果您正苦於以下問題:PHP eqLogic::byTypeAndSearhConfiguration方法的具體用法?PHP eqLogic::byTypeAndSearhConfiguration怎麽用?PHP eqLogic::byTypeAndSearhConfiguration使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類eqLogic
的用法示例。
在下文中一共展示了eqLogic::byTypeAndSearhConfiguration方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: pull
public static function pull()
{
$events = internalEvent::getNewInternalEvent('alarm');
foreach ($events as $event) {
if ($event->getEvent() == 'event::cmd') {
$trigger_id = $event->getOptions('id');
if (is_numeric($trigger_id)) {
$eqLogics = eqLogic::byTypeAndSearhConfiguration('alarm', '#' . $trigger_id . '#');
if (is_array($eqLogics) && count($eqLogics) != 0) {
foreach ($eqLogics as $eqLogic) {
$eqLogic->launch($trigger_id, $event->getOptions('value'));
}
}
}
}
}
}
示例2: getFromMarket
public static function getFromMarket(&$market, $_path)
{
$cibDir = dirname(__FILE__) . '/../config/devices/';
if (!file_exists($cibDir)) {
throw new Exception('Impossible d\'installer la configuration du module le repertoire n\\éxiste pas : ' . $cibDir);
}
$zip = new ZipArchive();
if ($zip->open($_path) === TRUE) {
$zip->extractTo($cibDir . '/');
$zip->close();
} else {
throw new Exception('Impossible de décompresser le zip : ' . $_path);
}
$moduleFile = dirname(__FILE__) . '/../config/devices/' . $market->getLogicalId() . '.php';
if (!file_exists($moduleFile)) {
throw new Exception('Echec de l\'installation. Impossible de trouver le module ' . $moduleFile);
}
foreach (eqLogic::byTypeAndSearhConfiguration('zwave', $market->getLogicalId()) as $eqLogic) {
$eqLogic->applyModuleConfiguration();
}
}