rate-it/src/Resources/contao/config/event_listeners.php

19 lines
330 B
PHP
Raw Normal View History

2018-02-14 09:32:24 +01:00
<?php
use cgoIT\rateit\RateIt;
2018-02-15 05:01:49 +01:00
use SimpleAjax\Event\SimpleAjax;
2018-02-14 09:32:24 +01:00
2018-02-15 05:01:49 +01:00
if (class_exists(SimpleAjax::class)) {
return array
(
SimpleAjax::NAME => array(
array(
array(new RateIt(), 'doVote'),
RateIt::PRIORITY
)
)
);
}
return array();