20 lines
370 B
PHP
20 lines
370 B
PHP
<?php
|
|
|
|
class CaratyResignModuleFrontController extends ModuleFrontController {
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function init() {
|
|
parent::init();
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function initContent() {
|
|
parent::initContent();
|
|
$this->setTemplate('../../../modules/caraty/views/templates/hook/resign');
|
|
}
|
|
}
|