BUG 8730 Migrate Email Setup to ExtJS SOLVED

- It has been migrated to ExtJS configurator email
This commit is contained in:
Alvaro Campos
2012-03-15 17:45:18 -04:00
parent 218fc12054
commit 0adfb3fb90
3 changed files with 372 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ class Admin extends Controller
/**
* UX - User experience
*/
public $debug = true;
public function uxList()
{
@@ -93,4 +95,19 @@ class Admin extends Controller
G::RenderPage('publish', 'extJs');
}
/**
* getting email configuration
* @autor Alvaro <alvaro@colosa.com>
*/
public function emails()
{
global $RBAC;
$RBAC->requirePermissions('PM_SETUP_ADVANCE');
$this->includeExtJS('admin/emails');
//render content
G::RenderPage('publish', 'extJs');
}
}