You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
313 B
11 lines
313 B
6 years ago
|
<?php
|
||
|
$observers = array(
|
||
|
array(
|
||
|
'eventname' => '\core\event\course_created',
|
||
|
'callback' => 'block_courses_verification_observer::created'
|
||
|
),
|
||
|
array(
|
||
|
'eventname' => '\core\event\course_updated',
|
||
|
'callback' => 'block_courses_verification_observer::updated',
|
||
|
)
|
||
|
);
|