summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/event/checkoverlapevents.phtml
blob: 265da0b89181f1b68a27748ade40c07a8d57ddb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<?php
// Output
print_r($this->overlaps);

if(count($this->overlaps) == 0) {
    echo '-1';
}
else {
    // Echo contents of output, e.g. required values, such as title, date, etc.
}
?>