Advertisement
Guest User

Untitled

a guest
Feb 1st, 2012
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php namespace ...\Broadmap;
  2.  
  3. use \Exception;
  4. use \...\TabularData;
  5. use \...\PersistentData;
  6.  
  7. /**
  8.  * Data management class for Broadmap
  9.  *
  10.  * @package bito
  11.  * @author ...
  12.  **/
  13. class DataManager
  14. {
  15.     /**
  16.      * Import data from a tabular data file into the Broadmap database
  17.      *
  18.      * @return bool Success/failure
  19.      * @author ...
  20.      **/
  21.     static function fileImport($filepath, $zones, $statuses)
  22.     {
  23.         throw new Exception("SOME EXCEPTION");
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement