* @license PHP License * @package WB * @subpackage base */ WBClass::load('WBAjax'); /** * AJAX implementation: User * * @version 0.1.0 * @package WB * @subpackage base */ class WBAjax_User extends WBAjax { /** * Location of form config file * @var string */ protected $getFormConfigDir = 'User'; /** * Second construcotr * * Init dirs for templates and form config * * @see include/WB/WBAjax#init() */ protected function init() { $this->getFormConfigDir = strtolower($this->tmplDir); $this->tmplDir .= '/Ajax'; } /** * Location of form config * @return string folder */ protected function getFormConfigDir() { return $this->getFormConfigDir; } }