UpdateCurrencyRate.php
[Pman.Core] / UpdateCurrencyRate.php
1 <?php
2
3 require_once 'Pman.php';
4
5 class Pman_Core_UpdateCurrencyRate extends Pman
6 {
7     
8     static $cli_desc = "Update Currency Exchange Rate";
9     
10     var $cli = false; 
11     
12     function getAuth() 
13     {
14         $ff = HTML_FlexyFramework::get();
15         if (!empty($ff->cli)) {
16             $this->cli = true;
17             return true;
18         }
19         
20         die("NOT ALLOWED");
21     }
22     
23     function get()
24     {
25         print_r('update currency exchange rate');
26     }
27     
28 }