Changeset 52 for trunk/Modules/Event/Event.php
- Timestamp:
- Jan 4, 2020, 11:59:33 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Event/Event.php
r51 r52 58 58 public $Id; 59 59 public $Database; 60 public $AddedCount; 61 62 function ImportInternal() 63 { 64 } 60 65 61 66 function Import() 62 67 { 63 68 $this->AddedCount = 0; 64 $Output = 'Parsing '.$this->Name.' ('.$this->Id.')...</br>'; 69 $Output = 'Parsing '.$this->Name.' ('.$this->Id.')...'; 70 $this->ImportInternal(); 71 $Output .= 'done.'; 72 if ($this->AddedCount > 0) $Output .= ' '.$this->AddedCount.' new.'; 73 $Output .= '</br>'."\n"; 65 74 return $Output; 66 75 }
Note:
See TracChangeset
for help on using the changeset viewer.