14 lines
377 B
PHP
14 lines
377 B
PHP
<?php
|
|
|
|
class RabbitMqPlugin extends Zend_Controller_Plugin_Abstract
|
|
{
|
|
public function dispatchLoopShutdown()
|
|
{
|
|
if (RabbitMq::$doPush) {
|
|
$md = array('schedule' => Schedule::GetScheduledPlaylists());
|
|
RabbitMq::SendMessageToPypo("update_schedule", $md);
|
|
RabbitMq::SendMessageToShowRecorder("update_schedule");
|
|
}
|
|
}
|
|
}
|