Changeset 2055:699a9314513f for inc/admin/actions/class.dcaction.php
- Timestamp:
- 09/24/13 09:37:38 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/admin/actions/class.dcaction.php
r2048 r2055 44 44 protected $cb_title; 45 45 46 /** @var string title for caller page title */ 47 protected $caller_title; 48 46 49 /** 47 50 * Class constructor … … 66 69 $this->from = new ArrayObject($_POST); 67 70 $this->field_entries = 'entries'; 71 $this->caller_title = __('Entries'); 68 72 } 69 73 … … 194 198 } 195 199 200 196 201 /** 197 202 * getRedirection - returns redirection URL … … 237 242 } 238 243 244 /** 245 * getCallerTitle - returns current form URI, if any 246 * 247 * @access public 248 * 249 * @return string the form URI 250 */ 251 public function getCallerTitle() { 252 return $this->caller_title; 253 } 254 239 255 /** 240 256 * getAction - returns current action, if any … … 275 291 } catch (Exception $e) { 276 292 $this->error($e); 293 return true; 277 294 } 278 295 }
Note: See TracChangeset
for help on using the changeset viewer.