Skip to content

Instantly share code, notes, and snippets.

@rootbear
Created September 5, 2013 20:20
Show Gist options
  • Save rootbear/6455617 to your computer and use it in GitHub Desktop.
Save rootbear/6455617 to your computer and use it in GitHub Desktop.
Name of current module controller or action from Yii view
<?php
// Module
if(isset($this->module)): echo $this->module->getName(); endif;
// Controller
echo $this->ID;
// Action
echo $this->action->id;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment