コード例 #1
0
 public function __construct($args)
 {
     global $neardCore, $neardLang, $neardBins, $neardWinbinder;
     if (file_exists($neardCore->getExec())) {
         $action = file_get_contents($neardCore->getExec());
         if ($action == self::QUIT) {
             Batch::exitApp();
         } elseif ($action == self::RESTART) {
             Batch::restartApp();
         }
         @unlink($neardCore->getExec());
     }
 }