Skip to content

Instantly share code, notes, and snippets.

@nojimage
Created January 24, 2011 09:17
Show Gist options
  • Save nojimage/792999 to your computer and use it in GitHub Desktop.
Save nojimage/792999 to your computer and use it in GitHub Desktop.
よい子のみんなはこういうことしちゃいけないと思う
<?php
SomePluginController extends AppController {
function some_mehtod() {
$this->params['requested'] = true;
$params = Router::getParams();
$this->plugin = false;
$this->params['plugin'] = false;
$params['plugin'] = null;
Router::setRequestInfo(array($params, Router::getPaths()));
// do something..
}
}
@nojimage
Copy link
Author

プラグインからAppのViewを読み込んだときのurlを遮へいするというかなんというか

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment