code stringlengths 1 2.01M | language stringclasses 1
value |
|---|---|
<?php
class myUser extends sfBasicSecurityUser
{
}
| PHP |
#!/usr/bin/env php
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
chdir(dirname(__FILE__));
require_once(dirname(... | PHP |
<?php
/**
* sfApply actions.
*
* @package 5seven5
* @subpackage sfApply
* @author Tom Boutell, tom@punkave.com
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
// Necessary due to a bug in the Symfony autoloader
require_once(dirname(__FILE__).'/../lib/BasesfApplyActions.cl... | PHP |
<?php
/**
* sfApply actions.
*
* @package 5seven5
* @subpackage sfApply
* @author Tom Boutell, tom@punkave.com
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
// Autoloader can't find this
require_once(dirname(__FILE__).'/../lib/BasesfApplyComponents.class.php');
class s... | PHP |
<?php use_helper('I18N') ?>
<?php slot('sf_apply_login') ?>
<?php end_slot() ?>
<div class="sf_apply_notice">
<?php echo __(<<<EOM
<p>
This account is inactive. Please contact the administrator.
</p>
EOM
) ?>
<?php include_partial('sfApply/continue') ?>
</div>
| PHP |
<?php use_helper('I18N', 'Url') ?>
<?php echo __(<<<EOM
<p>
We have received your request to recover your username and possibly your password on:
%1%
</p>
<p>
Your username is: %USERNAME%
</p>
<p>
If you have lost your password or wish to reset it, click on the link that follows:
</p>
<p>
%2%
</p>
<p>
You will then be... | PHP |
<?php use_helper('I18N', 'Url') ?>
<?php echo __(<<<EOM
<p>
Thanks for applying for an account on %1%.
</p>
<p>
To prevent abuse of the site, we require that you activate your
account by clicking on the following link:
</p>
<p>
%2%
</p>
<p>
Thanks again for joining us.
</p>
EOM
, array("%1%" => link_to($sf_request->get... | PHP |
<?php use_helper('I18N') ?>
<?php slot('sf_apply_login') ?>
<?php end_slot() ?>
<div class="sf_apply sf_apply_reset_request">
<form method="POST" action="<?php echo url_for('sfApply/resetRequest') ?>"
name="sf_apply_reset_request" id="sf_apply_reset_request">
<p>
<?php echo __(<<<EOM
Forgot your username or password?... | PHP |
<?php use_helper('I18N') ?>
<div class="sf_apply_notice">
<p>
<?php echo(__(<<<EOM
Thank you for applying for an account. You will receive a verification
email shortly. If you do not see that email, please be sure to check
your "spam" or "bulk" folder.
EOM
)) ?>
</p>
<?php include_partial('sfApply/continue') ?>
</div>... | PHP |
<?php use_helper('I18N', 'Url') ?>
<?php echo __(<<<EOM
We have received your request to recover your username and possibly your password on:
%1%
Your username is: %USERNAME%
If you have lost your password or wish to reset it, click on the link that follows:
%2%
You will then be prompted for the new password you w... | PHP |
<?php use_helper('I18N') ?>
<div class="sf_apply_notice">
<?php echo __(<<<EOM
<p>
An error took place during the email delivery process. Please try
again later.
</p>
EOM
) ?>
<?php include_partial('sfApply/continue') ?>
</div>
| PHP |
<?php use_helper('I18N') ?>
<div class="sf_apply_notice">
<?php echo __(<<<EOM
<p>
An error took place during the email delivery process. Please try
again later.
</p>
EOM
) ?>
<?php include_partial('sfApply/continue') ?>
</div>
| PHP |
<?php use_helper('I18N') ?>
<div class="sf_apply_notice">
<p>
<?php echo(__(<<<EOM
That account was never verified. You must verify the account before you can log in or, if
necessary, reset the password. We have resent your verification email, which contains
instructions to verify your account. If you do not see that e... | PHP |
<?php use_helper('I18N') ?>
<div class="sf_apply_notice">
<p>
<?php echo __("Thank you for confirming your account! You are now logged into the site.") ?>
</p>
<?php include_partial('sfApply/continue') ?>
</div>
| PHP |
<?php use_helper('I18N') ?>
<?php slot('sf_apply_login') ?>
<?php end_slot() ?>
<div class="sf_apply sf_apply_reset">
<form method="POST" action="<?php echo url_for("sfApply/reset") ?>" name="sf_apply_reset_form" id="sf_apply_reset_form">
<p>
<?php echo __(<<<EOM
Thanks for confirming your email address. You may now ch... | PHP |
<?php use_helper('I18N') ?>
<div class="sf_apply_notice">
<?php echo __(<<<EOM
<p>
An error took place during the email delivery process. Please try
again later.
</p>
EOM
) ?>
<?php include_partial('sfApply/continue') ?>
</div>
| PHP |
<?php use_helper('I18N') ?>
<div class="sf_apply_notice">
<?php echo __(<<<EOM
<p>
That confirmation code is invalid.
</p>
<p>
This may be because you have already confirmed your account. If so,
just click on the "Log In" button to log in.
</p>
<p>
Other possible explanations:
</p>
<p>
1. If you copied and pasted the ... | PHP |
<p>
<?php // Support for sfDoctrineGuardPlugin's getReferer is nice if the user's session is ?>
<?php // still active when they confirm, as is often the case now ?>
<?php echo link_to(__("Continue"), $sf_user->isAuthenticated() ? sfConfig::get('app_sfApplyPlugin_afterLogin', sfConfig::get('app_sfApplyPlugin_after', '@h... | PHP |
<?php use_helper('I18N') ?>
<div class="sf_apply_notice">
<p>
<?php echo(__(<<<EOM
Sorry, there is no user with that username or email address.
EOM
)) ?>
</p>
<?php include_partial('sfApply/continue') ?>
</div>
| PHP |
<?php use_helper('I18N') ?>
<?php if (has_slot('sf_apply_login')): ?>
<?php include_slot('sf_apply_login') ?>
<?php else: ?>
<?php if ($loggedIn): ?>
<?php include_partial('sfApply/logoutPrompt') ?>
<?php else: ?>
<?php include_partial('sfApply/loginPrompt', array("form" => $form)) ?>
<?php endif ?>
<?p... | PHP |
<?php use_helper('I18N') ?>
<div class="sf_apply_notice">
<p>
<?php echo __("Your password has been successfully reset. You are now logged
in to this site. In the future, be sure to log in with your new password.") ?>
</p>
<?php include_partial('sfApply/continue') ?>
</div>
| PHP |
<?php use_helper('I18N') ?>
<?php
// Override the login slot so that we don't get a login prompt on the
// apply page, which is just odd-looking. 0.6
?>
<?php slot('sf_apply_login') ?>
<?php end_slot() ?>
<div class="sf_apply sf_apply_apply">
<h2><?php echo __("Apply for an Account") ?></h2>
<form method="POST" act... | PHP |
<?php use_helper('I18N') ?>
<form method="POST" action="<?php echo url_for("@sf_guard_signin") ?>" name="sf_guard_signin" id="sf_guard_signin" class="sf_apply_signin_inline">
<?php echo $form ?>
<input type="submit" value="<?php echo __('sign in') ?>" />
<p>
<?php echo link_to(__('Reset Your Password'), 'sfAppl... | PHP |
<?php slot('sf_apply_login') ?>
<?php end_slot() ?>
<?php use_helper("I18N") ?>
<div class="sf_apply sf_apply_settings">
<h2><?php echo __("Account Settings") ?></h2>
<form method="POST" action="<?php echo url_for("sfApply/settings") ?>" name="sf_apply_settings_form" id="sf_apply_settings_form">
<ul>
<?php echo $form ?... | PHP |
<?php use_helper('I18N', 'Url') ?>
<?php echo __(<<<EOM
Thanks for applying for an account with %1%.
To prevent abuse of the site, we require that you activate your
account by clicking on the following link:
%2%
Thanks again for joining us.
EOM
, array("%1%" => $sf_request->getHost(),
"%2%" => url_for("sfApply/con... | PHP |
<?php use_helper('I18N') ?>
<?php slot('sf_apply_login') ?>
<?php end_slot() ?>
<div class="sf_apply_notice">
<?php echo __(<<<EOM
<p>
For security reasons, a confirmation message has been sent to
the email address associated with this account. Please check your
email for that message. You will need to click on a link... | PHP |
<?php use_helper('I18N') ?>
<div id="sf_apply_logged_in_as">
<p>
<?php echo __("Logged in as %1%",
array("%1%" => $sf_user->getGuardUser()->getUsername())) ?>
</p>
<?php echo link_to(__('Log Out'),
'@sf_guard_signout', array("id" => 'logout')) ?>
<?php echo link_to(__('Settings'),
'sfApply/settings', array("id... | PHP |
<?php
/**
* sfApply components.
*
* @package 5seven5
* @subpackage sfApply
* @author Tom Boutell, tom@punkave.com
* @version SVN: $Id: components.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class BasesfApplyComponents extends sfComponents
{
public function executeLogin()
{
$this->loggedIn ... | PHP |
<?php
/**
* sfApply actions.
*
* @package 5seven5
* @subpackage sfApply
* @author Tom Boutell, tom@punkave.com
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class BasesfApplyActions extends sfActions
{
public function executeApply(sfRequest $request)
{
$this->for... | PHP |
<?php
class sfApplyResetForm extends sfForm
{
public function configure()
{
$this->setWidget('password',
new sfWidgetFormInputPassword(
array(), array('maxlength' => 128)));
$this->setWidget('password2',
new sfWidgetFormInputPassword(
array(), array('maxlength' => 128)));
$t... | PHP |
<?php
class sfApplySettingsForm extends sfGuardUserProfileForm
{
public function configure()
{
parent::configure();
// We're editing the user who is logged in. It is not appropriate
// for the user to get to pick somebody else's userid, or change
// the validate field which is part of how their ac... | PHP |
<?php
class sfApplyResetRequestForm extends sfForm
{
public function configure()
{
parent::configure();
$this->setWidget('username_or_email',
new sfWidgetFormInput(
array(), array('maxlength' => 100)));
$this->setValidator('username_or_email',
new sfValidatorOr(
array(
... | PHP |
<?php
class sfApplyApplyForm extends sfGuardUserProfileForm
{
private $validate = null;
public function configure()
{
parent::configure();
// We're making a new user or editing the user who is
// logged in. In neither case is it appropriate for
// the user to get to pick an existing userid. The... | PHP |
<?php
class cleanNamesTask extends sfBaseTask
{
protected function configure()
{
// // add your own arguments here
// $this->addArguments(array(
// new sfCommandArgument('my_arg', sfCommandArgument::REQUIRED, 'My argument'),
// ));
$this->addOptions(array(
new sfCommandOption('applicat... | PHP |
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require_once(dirname(__FILE__).'/../lib/BasesfGuardAuthAc... | PHP |
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require_once(dirname(__FILE__).'/../lib/BasesfGuardAuthCo... | PHP |
<?php use_helper('I18N') ?>
<form action="<?php echo url_for('@sf_guard_signin') ?>" method="post">
<table>
<tbody>
<?php echo $form ?>
</tbody>
<tfoot>
<tr>
<td colspan="2">
<input type="submit" value="<?php echo __('Signin', null, 'sf_guard') ?>" />
<?... | PHP |
<?php use_helper('I18N') ?>
<h1><?php echo __('Signin', null, 'sf_guard') ?></h1>
<?php echo get_partial('sfGuardAuth/signin_form', array('form' => $form)) ?> | PHP |
<?php use_helper('I18N') ?>
<h2><?php echo __('Oops! The page you asked for is secure and you do not have proper credentials.', null, 'sf_guard') ?></h2>
<p><?php echo sfContext::getInstance()->getRequest()->getUri() ?></p>
<h3><?php echo __('Login below to gain access', null, 'sf_guard') ?></h3>
<?php echo get_com... | PHP |
<?php
class BasesfGuardAuthComponents extends sfComponents
{
public function executeSignin_form()
{
$class = sfConfig::get('app_sf_guard_plugin_signin_form', 'sfGuardFormSignin');
$this->form = new $class();
}
} | PHP |
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
*
* @package symfony
* @subpackage plugin
* @a... | PHP |
<?php
require_once dirname(__FILE__).'/../lib/BasesfGuardForgotPasswordActions.class.php';
/**
* sfGuardForgotPassword actions.
*
* @package sfGuardForgotPasswordPlugin
* @subpackage sfGuardForgotPassword
* @author Your name here
* @version SVN: $Id: actions.class.php 12534 2008-11-01 13:38:27Z Kris.... | PHP |
<?php use_helper('I18N') ?>
<h2><?php echo __('Forgot your password?', null, 'sf_guard') ?></h2>
<p>
<?php echo __('Do not worry, we can help you get back in to your account safely!', null, 'sf_guard') ?>
<?php echo __('Fill out the form below to request an e-mail with information on how to reset your password.', ... | PHP |
<?php use_helper('I18N') ?>
<?php echo __('Hi %first_name%', array('%first_name%' => $user->getFirstName()), 'sf_guard') ?>,<br/><br/>
<?php echo __('This e-mail is being sent because you requested information on how to reset your password.', null, 'sf_guard') ?><br/><br/>
<?php echo __('You can change your password ... | PHP |
<?php use_helper('I18N') ?>
<?php echo __('Hi %first_name%', array('%first_name%' => $user->getFirstName()), 'sf_guard') ?>,
<?php echo __('Below you will your username and new password:') ?>
<?php echo __('Username', null, 'sf_guard') ?>: <?php echo $user->getUsername() ?>
<?php echo __('Password', null, 'sf_guard... | PHP |
<?php use_helper('I18N') ?>
<h2><?php echo __('Hello %name%', array('%name%' => $user->getName()), 'sf_guard') ?></h2>
<h3><?php echo __('Enter your new password in the form below.', null, 'sf_guard') ?></h3>
<form action="<?php echo url_for('@sf_guard_forgot_password_change?unique_key='.$sf_request->getParameter('un... | PHP |
<?php
/**
* Base actions for the sfGuardForgotPasswordPlugin sfGuardForgotPassword module.
*
* @package sfGuardForgotPasswordPlugin
* @subpackage sfGuardForgotPassword
* @author Your name here
* @version SVN: $Id: BaseActions.class.php 12534 2008-11-01 13:38:27Z Kris.Wallsmith $
*/
abstract class... | PHP |
<?php
require_once dirname(__FILE__).'/../lib/sfGuardUserGeneratorConfiguration.class.php';
require_once dirname(__FILE__).'/../lib/sfGuardUserGeneratorHelper.class.php';
/**
* sfGuardUser actions.
*
* @package sfGuardPlugin
* @subpackage sfGuardUser
* @author Fabien Potencier
* @version SVN: $Id: act... | PHP |
<?php
/**
* sfGuardUser module configuration.
*
* @package sfGuardPlugin
* @subpackage sfGuardUser
* @author Fabien Potencier
* @version SVN: $Id: sfGuardUserGeneratorConfiguration.class.php 23319 2009-10-25 12:22:23Z Kris.Wallsmith $
*/
class sfGuardUserGeneratorConfiguration extends BaseSfGuardUserG... | PHP |
<?php
/**
* sfGuardUser module helper.
*
* @package sfGuardPlugin
* @subpackage sfGuardUser
* @author Fabien Potencier
* @version SVN: $Id: sfGuardUserGeneratorHelper.class.php 23319 2009-10-25 12:22:23Z Kris.Wallsmith $
*/
class sfGuardUserGeneratorHelper extends BaseSfGuardUserGeneratorHelper
{
}
| PHP |
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
*
* @package symfony
* @subpackage plugin
* @a... | PHP |
<?php
require_once dirname(__FILE__).'/../lib/BasesfGuardRegisterActions.class.php';
/**
* sfGuardRegister actions.
*
* @package guard
* @subpackage sfGuardRegister
* @author Your name here
* @version SVN: $Id: actions.class.php 12479 2008-10-31 10:54:40Z jwage $
*/
class sfGuardRegisterActions exten... | PHP |
<?php
require_once dirname(__FILE__).'/../lib/BasesfGuardRegisterComponents.class.php';
class sfGuardRegisterComponents extends BasesfGuardRegisterComponents
{
} | PHP |
<?php use_helper('I18N') ?>
<form action="<?php echo url_for('@sf_guard_register') ?>" method="post">
<table>
<?php echo $form ?>
<tfoot>
<tr>
<td colspan="2">
<input type="submit" name="register" value="<?php echo __('Register', null, 'sf_guard') ?>" />
</td>
</tr>
... | PHP |
<?php use_helper('I18N') ?>
<h1><?php echo __('Register', null, 'sf_guard') ?></h1>
<?php echo get_partial('sfGuardRegister/form', array('form' => $form)) ?> | PHP |
<?php
class BasesfGuardRegisterComponents extends sfComponents
{
public function executeForm()
{
$this->form = new sfGuardRegisterForm();
}
} | PHP |
<?php
class BasesfGuardRegisterActions extends sfActions
{
public function executeIndex(sfWebRequest $request)
{
if ($this->getUser()->isAuthenticated())
{
$this->getUser()->setFlash('notice', 'You are already registered and signed in!');
$this->redirect('@homepage');
}
$this->form = n... | PHP |
<?php
require_once dirname(__FILE__).'/../lib/sfGuardGroupGeneratorConfiguration.class.php';
require_once dirname(__FILE__).'/../lib/sfGuardGroupGeneratorHelper.class.php';
/**
* sfGuardGroup actions.
*
* @package sfGuardPlugin
* @subpackage sfGuardGroup
* @author Fabien Potencier
* @version SVN: $Id:... | PHP |
<?php
/**
* sfGuardGroup module configuration.
*
* @package sfGuardPlugin
* @subpackage sfGuardGroup
* @author Fabien Potencier
* @version SVN: $Id: sfGuardGroupGeneratorConfiguration.class.php 23319 2009-10-25 12:22:23Z Kris.Wallsmith $
*/
class sfGuardGroupGeneratorConfiguration extends BaseSfGuardG... | PHP |
<?php
/**
* sfGuardGroup module helper.
*
* @package sfGuardPlugin
* @subpackage sfGuardGroup
* @author Fabien Potencier
* @version SVN: $Id: sfGuardGroupGeneratorHelper.class.php 23319 2009-10-25 12:22:23Z Kris.Wallsmith $
*/
class sfGuardGroupGeneratorHelper extends BaseSfGuardGroupGeneratorHelper
{... | PHP |
<?php
require_once dirname(__FILE__).'/../lib/sfGuardPermissionGeneratorConfiguration.class.php';
require_once dirname(__FILE__).'/../lib/sfGuardPermissionGeneratorHelper.class.php';
/**
* sfGuardPermission actions.
*
* @package sfGuardPlugin
* @subpackage sfGuardPermission
* @author Fabien Potencier
* @... | PHP |
<?php
/**
* sfGuardPermission module helper.
*
* @package sfGuardPlugin
* @subpackage sfGuardPermission
* @author Fabien Potencier
* @version SVN: $Id: sfGuardPermissionGeneratorHelper.class.php 23319 2009-10-25 12:22:23Z Kris.Wallsmith $
*/
class sfGuardPermissionGeneratorHelper extends BaseSfGuardPe... | PHP |
<?php
/**
* sfGuardPermission module configuration.
*
* @package sfGuardPlugin
* @subpackage sfGuardPermission
* @author Fabien Potencier
* @version SVN: $Id: sfGuardPermissionGeneratorConfiguration.class.php 23319 2009-10-25 12:22:23Z Kris.Wallsmith $
*/
class sfGuardPermissionGeneratorConfiguration ... | PHP |
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* sfDoctrineGuardPlugin configuration.
*
* @package sfDo... | PHP |
<?php
/**
* Group permission reference table.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardGroupPermissionTable.class.php 23793 2009-11-11 17:42:50Z Kris.Wallsmith $
*/
abstract class Pluginsf... | PHP |
<?php
/**
* User model.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardUser.class.php 25605 2009-12-18 18:55:55Z Jonathan.Wage $
*/
abstract class PluginsfGuardUser extends BasesfGuardUser
{
p... | PHP |
<?php
/**
* Remember me model.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardRememberKey.class.php 23793 2009-11-11 17:42:50Z Kris.Wallsmith $
*/
abstract class PluginsfGuardRememberKey extends... | PHP |
<?php
/**
* Permission table.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardPermissionTable.class.php 23793 2009-11-11 17:42:50Z Kris.Wallsmith $
*/
abstract class PluginsfGuardPermissionTable ... | PHP |
<?php
/**
* Permission model.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardPermission.class.php 23793 2009-11-11 17:42:50Z Kris.Wallsmith $
*/
abstract class PluginsfGuardPermission extends Ba... | PHP |
<?php
/**
* Group table.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardGroupTable.class.php 23793 2009-11-11 17:42:50Z Kris.Wallsmith $
*/
abstract class PluginsfGuardGroupTable extends Doctrin... | PHP |
<?php
/**
* User permission reference table.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardUserPermissionTable.class.php 23793 2009-11-11 17:42:50Z Kris.Wallsmith $
*/
abstract class PluginsfGu... | PHP |
<?php
/**
* User table.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardUserTable.class.php 25546 2009-12-17 23:27:55Z Jonathan.Wage $
*/
abstract class PluginsfGuardUserTable extends Doctrine_Ta... | PHP |
<?php
/**
* User group reference table.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardUserGroupTable.class.php 23793 2009-11-11 17:42:50Z Kris.Wallsmith $
*/
abstract class PluginsfGuardUserGro... | PHP |
<?php
/**
* Group permission reference model.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardGroupPermission.class.php 23793 2009-11-11 17:42:50Z Kris.Wallsmith $
*/
abstract class PluginsfGuard... | PHP |
<?php
/**
* Remember me table.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardRememberKeyTable.class.php 23793 2009-11-11 17:42:50Z Kris.Wallsmith $
*/
abstract class PluginsfGuardRememberKeyTab... | PHP |
<?php
/**
*/
class PluginsfGuardForgotPasswordTable extends Doctrine_Table
{
} | PHP |
<?php
/**
* User group reference model.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardUserGroup.class.php 25546 2009-12-17 23:27:55Z Jonathan.Wage $
*/
abstract class PluginsfGuardUserGroup ext... | PHP |
<?php
/**
* User permission reference model.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardUserPermission.class.php 25546 2009-12-17 23:27:55Z Jonathan.Wage $
*/
abstract class PluginsfGuardUse... | PHP |
<?php
/**
* Group model.
*
* @package sfDoctrineGuardPlugin
* @subpackage model
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardGroup.class.php 23793 2009-11-11 17:42:50Z Kris.Wallsmith $
*/
abstract class PluginsfGuardGroup extends BasesfGuardGroup
... | PHP |
<?php
/**
* PluginsfGuardGroup form.
*
* @package sfDoctrineGuardPlugin
* @subpackage filter
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardGroupFormFilter.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*/
abstract class PluginsfGuardGroupFor... | PHP |
<?php
/**
* PluginsfGuardPermission form.
*
* @package sfDoctrineGuardPlugin
* @subpackage filter
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardPermissionFormFilter.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*/
abstract class PluginsfGua... | PHP |
<?php
/**
* PluginsfGuardUser form.
*
* @package sfDoctrineGuardPlugin
* @subpackage filter
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardUserFormFilter.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*/
abstract class PluginsfGuardUserFormFi... | PHP |
<?php
/**
* PluginsfGuardUser form.
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardUserForm.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*/
abstract class PluginsfGuardUserForm extends B... | PHP |
<?php
/**
* sfGuardChangeUserPasswordForm for changing a users password
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Jonathan H. Wage <jonwage@gmail.com>
* @version SVN: $Id: sfGuardChangeUserPasswordForm.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*/
class sfGuardChangeUs... | PHP |
<?php
/**
* PluginsfGuardPermission form.
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardPermissionForm.class.php 24629 2009-12-01 00:34:36Z Jonathan.Wage $
*/
abstract class PluginsfGuardPermiss... | PHP |
<?php
/**
* sfGuardFormSignin for sfGuardAuth signin action
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: sfGuardFormSignin.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*/
class sfGuardFormSignin ex... | PHP |
<?php
/**
* PluginsfGuardGroup form.
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: PluginsfGuardGroupForm.class.php 24629 2009-12-01 00:34:36Z Jonathan.Wage $
*/
abstract class PluginsfGuardGroupForm extends... | PHP |
<?php
/**
* BasesfGuardFormSignin
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Jonathan H. Wage <jonwage@gmail.com>
* @version SVN: $Id: BasesfGuardFormSignin.class.php 25546 2009-12-17 23:27:55Z Jonathan.Wage $
... | PHP |
<?php
/**
* BasesfGuardChangeUserPasswordForm for changing a users password
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Jonathan H. Wage <jonwage@gmail.com>
* @version SVN: $Id: BasesfGuardChangeUserPasswordForm.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*/
class BasesfG... | PHP |
<?php
/**
* BasesfGuardRegisterForm for registering new users
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Jonathan H. Wage <jonwage@gmail.com>
* @version SVN: $Id: BasesfGuardChangeUserPasswordForm.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*/
class BasesfGuardRegisterFo... | PHP |
<?php
/**
* BasesfGuardUserAdminForm
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: BasesfGuardUserAdminForm.class.php 25546 2009-12-17 23:27:55Z Jonathan.Wage $
*/
class BasesfGuardUserAdminForm extends Base... | PHP |
<?php
/**
* sfGuardUserAdminForm for admin generators
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: sfGuardUserAdminForm.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*/
class sfGuardUserAdminForm ex... | PHP |
<?php
/**
* sfGuardRegisterForm for registering new users
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Jonathan H. Wage <jonwage@gmail.com>
* @version SVN: $Id: BasesfGuardChangeUserPasswordForm.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*/
class sfGuardRegisterForm exten... | PHP |
<?php
/**
* BasesfGuardRequestForgotPasswordForm for requesting a forgot password email
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Jonathan H. Wage <jonwage@gmail.com>
* @version SVN: $Id: BasesfGuardRequestForgotPasswordForm.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*... | PHP |
<?php
/**
* BasesfGuardRequestForgotPasswordForm for requesting a forgot password email
*
* @package sfDoctrineGuardPlugin
* @subpackage form
* @author Jonathan H. Wage <jonwage@gmail.com>
* @version SVN: $Id: BasesfGuardRequestForgotPasswordForm.class.php 23536 2009-11-02 21:41:21Z Kris.Wallsmith $
*... | PHP |
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
*
* @package symfony
* @subpackage plugin
* @a... | PHP |
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
*
* @package symfony
* @subpackage plugin
* @author ... | PHP |
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Processes the "remember me" cookie.
*
* This filter shoul... | PHP |
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Processes the "remember me" cookie.
*
* @package symfo... | PHP |
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Promotes a user as a super administrator.
*
* @package ... | PHP |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.