Changeset 7716
- Timestamp:
- 03/02/08 19:05:44 (1 year ago)
- Files:
-
- branches/1.1/lib/view/sfView.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/view/sfView.class.php
r7407 r7716 486 486 487 487 /** 488 * Gets the module name associated with this view. 489 * 490 * @return string A module name 491 */ 492 public function getModuleName() 493 { 494 return $this->moduleName; 495 } 496 497 /** 498 * Gets the action name associated with this view. 499 * 500 * @return string An action name 501 */ 502 public function getActionName() 503 { 504 return $this->actionName; 505 } 506 507 /** 508 * Gets the view name associated with this view. 509 * 510 * @return string An action name 511 */ 512 public function getViewName() 513 { 514 return $this->viewName; 515 } 516 517 /** 488 518 * Calls methods defined via sfEventDispatcher. 489 519 *

