<?php

/**
* Base actions for the myPropelGuardPlugin myGuardAuth module.
*
* @package myPropelGuardPlugin
* @subpackage myGuardAuth
* @author Your name here
* @version SVN: $Id: BaseActions.class.php 12628 2008-11-04 14:43:36Z Kris.Wallsmith $
*/
abstract class BasemyGuardAuthActions extends sfActions
{
public function executeLogin($request)
{
}

protected function getNewLoginForm()
{
}

protected function bindLoginForm($form)
{
}

protected function handleLoginSuccess()
{
}

protected function handleLoginFailure()
{
}

public function executeLogout($request)
{
}
}