| | 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 | /** |
|---|