NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
1 <?php
2
3 require_once 'Pman.php';
4
5 class Pman_Core_NotifySmtpCheck extends Pman
6 {
7     function check()
8     {
9         $ff = HTML_FlexyFramework::get();
10         
11         if(
12                 empty($ff->Core_Notify) ||
13                 empty($ff->Core_Notify['routes'])
14         ){
15             return;
16         }
17     }
18     
19 }