blob: 8060f560c11b0d0e6fd850054519ccf02b29974a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
class javascriptController extends ActionController {
public function firstAction () {
$this->view->_useLayout (false);
header('Content-type: text/javascript');
}
public function mainAction () {
}
}
|