blob: a83d9b9e8c6449ac7219dc788e323b76c678d682 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
/**
* server actions.
*
* @package mailadmin
* @subpackage server
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class serverActions extends sfActions
{
/**
* Executes index action
*
*/
public function executeIndex()
{
$this->forward('server', 'imap');
}
public function executeImap()
{
$serverinfo = new IMAPServerInformation();
$this->serverinfo = $serverinfo;
return sfView::SUCCESS;
}
}
|