ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilCronPaymentNotification.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
10 {
11  public function sendNotifications()
12  {
13  require_once 'Services/Payment/classes/class.ilPaymentNotification.php';
14 
15  $msn = new ilPaymentNotification();
16  $msn->send();
17 
18  return true;
19  }
20 }
21 ?>