Search is not available for this dataset
id stringlengths 1 8 | text stringlengths 72 9.81M | addition_count int64 0 10k | commit_subject stringlengths 0 3.7k | deletion_count int64 0 8.43k | file_extension stringlengths 0 32 | lang stringlengths 1 94 | license stringclasses 10
values | repo_name stringlengths 9 59 |
|---|---|---|---|---|---|---|---|---|
10048350 | <NME> RegisterTest.php
<BEF> <?php
namespace ZfcUserTest\Form;
use ZfcUser\Form\Register as Form;
class RegisterTest extends \PHPUnit_Framework_TestCase
{
public function testConstruct()
{
$options = $this->getMock('ZfcUser\Options\RegistrationOptionsInterface');
$options->expects($this->once... | 21 | Merge pull request #564 from claytondaley/fix-base-form-1.x | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048351 | <NME> ZfcUserLoginWidget.php
<BEF> ADDFILE
<MSG> Merge remote-tracking branch 'adamlundrigan/feature/login-widget'
<DFF> @@ -0,0 +1,52 @@
+<?php
+
+namespace ZfcUser\View\Helper;
+
+use Zend\View\Helper\AbstractHelper,
+ ZfcUser\Form\Login as LoginForm,
+ Zend\View\Model\ViewModel;
+
+class ZfcUserLoginWidget ex... | 52 | Merge remote-tracking branch 'adamlundrigan/feature/login-widget' | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048352 | <NME> ZfcUserLoginWidget.php
<BEF> ADDFILE
<MSG> Merge remote-tracking branch 'adamlundrigan/feature/login-widget'
<DFF> @@ -0,0 +1,52 @@
+<?php
+
+namespace ZfcUser\View\Helper;
+
+use Zend\View\Helper\AbstractHelper,
+ ZfcUser\Form\Login as LoginForm,
+ Zend\View\Model\ViewModel;
+
+class ZfcUserLoginWidget ex... | 52 | Merge remote-tracking branch 'adamlundrigan/feature/login-widget' | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048353 | <NME> login.phtml
<BEF> <h1><?php echo $this->translate('Sign In'); ?></h1>
<?php
$form = $this->loginForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/login'));
$form->setAttribute('method', 'post');
$form->setAttribute('autocomplete', 'off');
?>
<?php echo $this->partial('_form.phtml', ['for... | 1 | Update for zf2 method name changes | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048354 | <NME> login.phtml
<BEF> <h1><?php echo $this->translate('Sign In'); ?></h1>
<?php
$form = $this->loginForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/login'));
$form->setAttribute('method', 'post');
$form->setAttribute('autocomplete', 'off');
?>
<?php echo $this->partial('_form.phtml', ['for... | 1 | Update for zf2 method name changes | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048355 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Storage;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Storage;
use Zend\Authentication\Storage\StorageInterface;
use Zend\ServiceManager\ServiceManager;
use ZfcUser\Mapper\UserInterface as UserMapper;
class Db implements Storage\StorageIn... | 1 | Merge pull request #585 from mailjet/1.x | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048356 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Storage;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Storage;
use Zend\Authentication\Storage\StorageInterface;
use Zend\ServiceManager\ServiceManager;
use ZfcUser\Mapper\UserInterface as UserMapper;
class Db implements Storage\StorageIn... | 1 | Merge pull request #585 from mailjet/1.x | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048357 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 39 | Merge pull request #175 from benjaminlazarecki/patch-1 | 5 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048358 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 39 | Merge pull request #175 from benjaminlazarecki/patch-1 | 5 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048359 | <NME> UserController.php
<BEF> <?php
namespace ZfcUser\Controller;
use Zend\Form\FormInterface;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Stdlib\ResponseInterface as Response;
use Zend\Stdlib\Parameters;
use Zend\View\Model\ViewModel;
use ZfcUser\Servi... | 2 | Merge pull request #89 from markuska/master | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048360 | <NME> UserController.php
<BEF> <?php
namespace ZfcUser\Controller;
use Zend\Form\FormInterface;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Stdlib\ResponseInterface as Response;
use Zend\Stdlib\Parameters;
use Zend\View\Model\ViewModel;
use ZfcUser\Servi... | 2 | Merge pull request #89 from markuska/master | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048361 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\EventManager\EventInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use Zend\Session\Container as SessionContai... | 1 | Merge pull request #201 from hikaru-shindo/patch-1 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048362 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\EventManager\EventInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use Zend\Session\Container as SessionContai... | 1 | Merge pull request #201 from hikaru-shindo/patch-1 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048363 | <NME> UserControllerFactory.php
<BEF> <?php
namespace ZfcUser\Factory\Controller;
use Interop\Container\ContainerInterface;
use Zend\Mvc\Controller\ControllerManager;
use Zend\ServiceManager\Factory\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser... | 3 | Fix factories returning themselves | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048364 | <NME> UserControllerFactory.php
<BEF> <?php
namespace ZfcUser\Factory\Controller;
use Interop\Container\ContainerInterface;
use Zend\Mvc\Controller\ControllerManager;
use Zend\ServiceManager\Factory\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser... | 3 | Fix factories returning themselves | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048365 | <NME> UserControllerTest.php
<BEF> <?php
namespace ZfcUserTest\Controller;
use Zend\Form\FormElementManager;
class UserControllerTest extends \PHPUnit_Framework_TestCase
{
public function testIndexAction()
{
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
... | 242 | Additions | 8 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048366 | <NME> UserControllerTest.php
<BEF> <?php
namespace ZfcUserTest\Controller;
use Zend\Form\FormElementManager;
class UserControllerTest extends \PHPUnit_Framework_TestCase
{
public function testIndexAction()
{
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
... | 242 | Additions | 8 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048367 | <NME> Module.php
<BEF> <?php
namespace ZfcUser;
use Zend\ModuleManager\Feature\ConfigProviderInterface;
use Zend\ModuleManager\Feature\ControllerPluginProviderInterface;
use Zend\ModuleManager\Feature\ControllerProviderInterface;
use Zend\ModuleManager\Feature\ServiceProviderInterface;
class Module implements
Co... | 1 | Merge pull request #316 from JoshBour/patch-1 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048368 | <NME> Module.php
<BEF> <?php
namespace ZfcUser;
use Zend\ModuleManager\Feature\ConfigProviderInterface;
use Zend\ModuleManager\Feature\ControllerPluginProviderInterface;
use Zend\ModuleManager\Feature\ControllerProviderInterface;
use Zend\ModuleManager\Feature\ServiceProviderInterface;
class Module implements
Co... | 1 | Merge pull request #316 from JoshBour/patch-1 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048369 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\EventManager\EventInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use Zend\Session\Container as SessionContai... | 2 | Fixes last_ip = '' problem when user logs in for the first time | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048370 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\EventManager\EventInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use Zend\Session\Container as SessionContai... | 2 | Fixes last_ip = '' problem when user logs in for the first time | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048371 | <NME> msgIds.php
<BEF> <?php
/**
* Ids for poedit
* @method Z
*/
translate('Username');
translate('Email');
translate('New Email');
translate('Verify New Email');
translate('Display Name');
translate('Password');
translate('Password Verify');
translate('Current Password');
translate('Verify New Password');
translate... | 2 | Add new translation | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048372 | <NME> msgIds.php
<BEF> <?php
/**
* Ids for poedit
* @method Z
*/
translate('Username');
translate('Email');
translate('New Email');
translate('Verify New Email');
translate('Display Name');
translate('Password');
translate('Password Verify');
translate('Current Password');
translate('Verify New Password');
translate... | 2 | Add new translation | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048373 | <NME> Password.php
<BEF> ADDFILE
<MSG> Updated to a much more secure password hashing strategy
- Now using PHP crypt()
- Updated readme
<DFF> @@ -0,0 +1,60 @@
+<?php
+
+namespace EdpUser\Util;
+
+use EdpCommon\Util\String;
+
+abstract class Password
+{
+
+ public static function hash($password, $salt)
+ {
+ ... | 60 | Updated to a much more secure password hashing strategy | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048374 | <NME> Password.php
<BEF> ADDFILE
<MSG> Updated to a much more secure password hashing strategy
- Now using PHP crypt()
- Updated readme
<DFF> @@ -0,0 +1,60 @@
+<?php
+
+namespace EdpUser\Util;
+
+use EdpCommon\Util\String;
+
+abstract class Password
+{
+
+ public static function hash($password, $salt)
+ {
+ ... | 60 | Updated to a much more secure password hashing strategy | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048375 | <NME> register.phtml
<BEF> <h1>Register</h1>
<?php
if (!$this->enableRegistration) {
print "Registration is disabled";
return;
}
$form = $this->registerForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/register'));
$form->setAttribute('method', 'post');
$form->setAttribute('autocomplete... | 1 | Merge pull request #234 from manuscle/i18n | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048376 | <NME> register.phtml
<BEF> <h1>Register</h1>
<?php
if (!$this->enableRegistration) {
print "Registration is disabled";
return;
}
$form = $this->registerForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/register'));
$form->setAttribute('method', 'post');
$form->setAttribute('autocomplete... | 1 | Merge pull request #234 from manuscle/i18n | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048377 | <NME> README.md
<BEF> # Docker Machine NFS
## Requirements
* [Docker Machine](https://docs.docker.com/machine/) 0.5.0+
## Mac OS X 10.9+
Activates [NFS](https://en.wikipedia.org/wiki/Network_File_System) for an
existing boot2docker box created through
[Docker Machine](https://docs.docker.com/machine/).
:warning: T... | 1 | Added VMware Fusion to readme | 0 | .md | md | mit | adlogix/docker-machine-nfs |
10048378 | <NME> register.phtml
<BEF> <h1><?php echo $this->translate('Register'); ?></h1>
<?php
if (!$this->enableRegistration) {
print "Registration is disabled";
return;
}
$form = $this->registerForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/register'));
$form->setAttribute('method', 'post')... | 1 | Fixed XSS leak in register form | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048379 | <NME> register.phtml
<BEF> <h1><?php echo $this->translate('Register'); ?></h1>
<?php
if (!$this->enableRegistration) {
print "Registration is disabled";
return;
}
$form = $this->registerForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/register'));
$form->setAttribute('method', 'post')... | 1 | Fixed XSS leak in register form | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048380 | <NME> .travis.yml
<BEF> language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --dev --prefer-source;
- wget https://scrutinizer-ci.com/ocular.phar
- mysql -e "create database IF NOT EXISTS zfc_user;" -uroot
- ./vendor/bin/phpcs -n --standard=PSR2 ./src... | 4 | disable notifications mail | 1 | .yml | travis | bsd-3-clause | ZF-Commons/ZfcUser |
10048381 | <NME> .travis.yml
<BEF> language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --dev --prefer-source;
- wget https://scrutinizer-ci.com/ocular.phar
- mysql -e "create database IF NOT EXISTS zfc_user;" -uroot
- ./vendor/bin/phpcs -n --standard=PSR2 ./src... | 4 | disable notifications mail | 1 | .yml | travis | bsd-3-clause | ZF-Commons/ZfcUser |
10048382 | <NME> msgIds.php
<BEF> <?php
/**
* Ids for poedit
* @method translate()
*/
translate('Username');
translate('Email');
translate('New Email');
translate('Verify New Email');
translate('Display Name');
translate('Password');
translate('Password Verify');
translate('Current Password');
translate('Verify New Password');... | 0 | fr_FR.po file génération and translation | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048383 | <NME> msgIds.php
<BEF> <?php
/**
* Ids for poedit
* @method translate()
*/
translate('Username');
translate('Email');
translate('New Email');
translate('Verify New Email');
translate('Display Name');
translate('Password');
translate('Password Verify');
translate('Current Password');
translate('Verify New Password');... | 0 | fr_FR.po file génération and translation | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048384 | <NME> ZfcUserLoginWidget.php
<BEF> ADDFILE
<MSG> - move remaining closures from Module to factory
<DFF> @@ -0,0 +1,31 @@
+<?php
+/**
+ * Created by PhpStorm.
+ * User: Clayton Daley
+ * Date: 5/6/2015
+ * Time: 6:54 PM
+ */
+
+namespace ZfcUser\Factory\View\Helper;
+
+use Zend\ServiceManager\FactoryInterface;
+use Ze... | 31 | - move remaining closures from Module to factory | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048385 | <NME> ZfcUserLoginWidget.php
<BEF> ADDFILE
<MSG> - move remaining closures from Module to factory
<DFF> @@ -0,0 +1,31 @@
+<?php
+/**
+ * Created by PhpStorm.
+ * User: Clayton Daley
+ * Date: 5/6/2015
+ * Time: 6:54 PM
+ */
+
+namespace ZfcUser\Factory\View\Helper;
+
+use Zend\ServiceManager\FactoryInterface;
+use Ze... | 31 | - move remaining closures from Module to factory | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048386 | <NME> UserTest.php
<BEF> <?php
namespace ZfcUserTest\Service;
use ZfcUser\Service\User as Service;
use Zend\Crypt\Password\Bcrypt;
class UserTest extends \PHPUnit_Framework_TestCase
{
protected $service;
protected $options;
protected $serviceManager;
protected $formHydrator;
protected $eventM... | 2 | Fix Bcrypt error on php 5.5 | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048387 | <NME> UserTest.php
<BEF> <?php
namespace ZfcUserTest\Service;
use ZfcUser\Service\User as Service;
use Zend\Crypt\Password\Bcrypt;
class UserTest extends \PHPUnit_Framework_TestCase
{
protected $service;
protected $options;
protected $serviceManager;
protected $formHydrator;
protected $eventM... | 2 | Fix Bcrypt error on php 5.5 | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048388 | <NME> README.md
<BEF> # Docker Machine NFS
## Requirements
* [Docker Machine](https://docs.docker.com/machine/) 0.5.0+
## Mac OS X 10.9+
Activates [NFS](https://en.wikipedia.org/wiki/Network_File_System) for an
existing boot2docker box created through
[Docker Machine](https://docs.docker.com/machine/).
:warning: T... | 1 | Update readme with new usage notation | 1 | .md | md | mit | adlogix/docker-machine-nfs |
10048389 | <NME> index.phtml
<BEF> <?php echo $this->gravatar($this->zfcUserIdentity()->getEmail()) ?>
Hello, <?php echo $this->zfcUserIdentity()->getDisplayName() ?>! <a href="<?php echo $this->url('zfcuser/logout') ?>">[Sign Out]</a>
<a href="<?php echo $this->url('zfcuser/logout') ?>">[<?php echo $this->translate('Sign Out'); ... | 1 | Added user display name view helper. Added form timeout options (CSRF). Added user controller action (optional) to regenerate new CSRF on client page via Ajax (return JSON). | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048390 | <NME> index.phtml
<BEF> <?php echo $this->gravatar($this->zfcUserIdentity()->getEmail()) ?>
Hello, <?php echo $this->zfcUserIdentity()->getDisplayName() ?>! <a href="<?php echo $this->url('zfcuser/logout') ?>">[Sign Out]</a>
<a href="<?php echo $this->url('zfcuser/logout') ?>">[<?php echo $this->translate('Sign Out'); ... | 1 | Added user display name view helper. Added form timeout options (CSRF). Added user controller action (optional) to regenerate new CSRF on client page via Ajax (return JSON). | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048391 | <NME> module.config.php
<BEF> <?php
return array(
'view_manager' => array(
'template_path_stack' => array(
'zfcuser' => __DIR__ . '/../view',
),
),
'router' => array(
'routes' => array(
'zfcuser' => array(
'type' => 'Literal',
... | 4 | Merge pull request #7 from akrabat/hotfix/di-for-controller-plugin | 6 | .php | config | bsd-3-clause | ZF-Commons/ZfcUser |
10048392 | <NME> module.config.php
<BEF> <?php
return array(
'view_manager' => array(
'template_path_stack' => array(
'zfcuser' => __DIR__ . '/../view',
),
),
'router' => array(
'routes' => array(
'zfcuser' => array(
'type' => 'Literal',
... | 4 | Merge pull request #7 from akrabat/hotfix/di-for-controller-plugin | 6 | .php | config | bsd-3-clause | ZF-Commons/ZfcUser |
10048393 | <NME> AdapterChain.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Zend\Authentication\Adapter\AdapterInterface;
use Zend\Authentication\Result as AuthenticationResult;
Zend\EventManager\Event,
Zend\Stdlib\RequestDescription as Request,
Zend\Stdlib\ResponseDescription as Response,
ZfcBas... | 23 | Merge pull request #38 from EvanDotPro/hotfix/event-manager-injection | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048394 | <NME> AdapterChain.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Zend\Authentication\Adapter\AdapterInterface;
use Zend\Authentication\Result as AuthenticationResult;
Zend\EventManager\Event,
Zend\Stdlib\RequestDescription as Request,
Zend\Stdlib\ResponseDescription as Response,
ZfcBas... | 23 | Merge pull request #38 from EvanDotPro/hotfix/event-manager-injection | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048395 | <NME> RegisterTest.php
<BEF> <?php
namespace ZfcUserTest\Form;
use ZfcUser\Form\Register as Form;
class RegisterTest extends \PHPUnit_Framework_TestCase
{
/**
* @dataProvider providerTestConstruct
*/
public function testConstruct($useCaptcha = false)
{
$options = $this->getMock('ZfcUser... | 0 | - restore original tests - tweak travis.yml | 3 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048396 | <NME> RegisterTest.php
<BEF> <?php
namespace ZfcUserTest\Form;
use ZfcUser\Form\Register as Form;
class RegisterTest extends \PHPUnit_Framework_TestCase
{
/**
* @dataProvider providerTestConstruct
*/
public function testConstruct($useCaptcha = false)
{
$options = $this->getMock('ZfcUser... | 0 | - restore original tests - tweak travis.yml | 3 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048397 | <NME> docker-machine-nfs.sh
<BEF> #!/bin/bash
#
# The MIT License (MIT)
# Copyright © 2015 Toni Van de Voorde <toni.vdv@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the “Software”), to deal
# in the Software without re... | 1 | Merge pull request #7 from adlogix/revert-5-master | 1 | .sh | sh | mit | adlogix/docker-machine-nfs |
10048398 | <NME> Login.php
<BEF> <?php
namespace ZfcUser\Form;
use Zend\Form\Element;
use ZfcUser\Options\AuthenticationOptionsInterface;
class Login extends ProvidesEventsForm
{
/**
* @var AuthenticationOptionsInterface
*/
protected $authOptions;
public function __construct($name, AuthenticationOptionsI... | 4 | Fix login form button label | 6 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048399 | <NME> Login.php
<BEF> <?php
namespace ZfcUser\Form;
use Zend\Form\Element;
use ZfcUser\Options\AuthenticationOptionsInterface;
class Login extends ProvidesEventsForm
{
/**
* @var AuthenticationOptionsInterface
*/
protected $authOptions;
public function __construct($name, AuthenticationOptionsI... | 4 | Fix login form button label | 6 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048400 | <NME> DbTest.php
<BEF> ADDFILE
<MSG> Storage db test
<DFF> @@ -0,0 +1,219 @@
+<?php
+
+namespace ZfcUserTest\Authentication\Storage;
+
+use ZfcUser\Authentication\Storage\Db;
+
+class DbTest extends \PHPUnit_Framework_TestCase
+{
+ /**
+ * The object to be tested.
+ *
+ * @var Db
+ */
+ protected... | 219 | Storage db test | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048401 | <NME> DbTest.php
<BEF> ADDFILE
<MSG> Storage db test
<DFF> @@ -0,0 +1,219 @@
+<?php
+
+namespace ZfcUserTest\Authentication\Storage;
+
+use ZfcUser\Authentication\Storage\Db;
+
+class DbTest extends \PHPUnit_Framework_TestCase
+{
+ /**
+ * The object to be tested.
+ *
+ * @var Db
+ */
+ protected... | 219 | Storage db test | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048402 | <NME> changeemail.phtml
<BEF> <h3><?php echo sprintf($this->translate('Change Email for %s'), $this->zfcUserDisplayName()); ?></h3>
<?php if ($status === true) : ?>
<div class="alert alert-success"><?php echo $this->translate('Email address changed successfully.'); ?></div>
<?php elseif ($status === false) : ?>
<div cl... | 0 | Merge pull request #142 from hussfelt/master | 2 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048403 | <NME> changeemail.phtml
<BEF> <h3><?php echo sprintf($this->translate('Change Email for %s'), $this->zfcUserDisplayName()); ?></h3>
<?php if ($status === true) : ?>
<div class="alert alert-success"><?php echo $this->translate('Email address changed successfully.'); ?></div>
<?php elseif ($status === false) : ?>
<div cl... | 0 | Merge pull request #142 from hussfelt/master | 2 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048404 | <NME> UserController.php
<BEF> <?php
namespace ZfcUser\Controller;
use Zend\Form\FormInterface;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Stdlib\ResponseInterface as Response;
use Zend\Stdlib\Parameters;
use Zend\View\Model\ViewModel;
use ZfcUser\Servi... | 1 | Merge pull request #168 from Maks3w/patch-1 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048405 | <NME> UserController.php
<BEF> <?php
namespace ZfcUser\Controller;
use Zend\Form\FormInterface;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Stdlib\ResponseInterface as Response;
use Zend\Stdlib\Parameters;
use Zend\View\Model\ViewModel;
use ZfcUser\Servi... | 1 | Merge pull request #168 from Maks3w/patch-1 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048406 | <NME> README.md
<BEF> # Docker Machine NFS
## Requirements
* [Docker Machine](https://docs.docker.com/machine/) 0.5.0+
## Mac OS X 10.9+
Activates [NFS](https://en.wikipedia.org/wiki/Network_File_System) for an
existing boot2docker box created through
[Docker Machine](https://docs.docker.com/machine/).
:warning: T... | 5 | Update README.md | 0 | .md | md | mit | adlogix/docker-machine-nfs |
10048407 | <NME> UserController.php
<BEF> <?php
namespace ZfcUser\Controller;
use Zend\Form\FormInterface;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Stdlib\ResponseInterface as Response;
use Zend\Stdlib\Parameters;
use Zend\View\Model\ViewModel;
use ZfcUser\Servi... | 2 | Merge pull request #223 from bgallagher/master | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048408 | <NME> UserController.php
<BEF> <?php
namespace ZfcUser\Controller;
use Zend\Form\FormInterface;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Stdlib\ResponseInterface as Response;
use Zend\Stdlib\Parameters;
use Zend\View\Model\ViewModel;
use ZfcUser\Servi... | 2 | Merge pull request #223 from bgallagher/master | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048409 | <NME> ZfcUserLoginWidgetTest.php
<BEF> <?php
namespace ZfcUserTest\View\Helper;
use ZfcUser\View\Helper\ZfcUserLoginWidget as ViewHelper;
class ZfcUserLoginWidgetTest extends \PHPUnit_Framework_TestCase
{
protected $helper;
protected $view;
public function setUp()
{
$this->helper = new View... | 60 | add tests and coveralls support: | 7 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048410 | <NME> ZfcUserLoginWidgetTest.php
<BEF> <?php
namespace ZfcUserTest\View\Helper;
use ZfcUser\View\Helper\ZfcUserLoginWidget as ViewHelper;
class ZfcUserLoginWidgetTest extends \PHPUnit_Framework_TestCase
{
protected $helper;
protected $view;
public function setUp()
{
$this->helper = new View... | 60 | add tests and coveralls support: | 7 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048411 | <NME> docker-machine-nfs.sh
<BEF> #!/bin/bash
#
# The MIT License (MIT)
# Copyright © 2015 Toni Van de Voorde <toni.vdv@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the “Software”), to deal
# in the Software without re... | 55 | Add multi share support | 22 | .sh | sh | mit | adlogix/docker-machine-nfs |
10048412 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\ServiceManager\ServiceManagerAwareInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use ZfcUser\Authentication\... | 15 | Merge pull request #300 from gabriel403/master | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048413 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\ServiceManager\ServiceManagerAwareInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use ZfcUser\Authentication\... | 15 | Merge pull request #300 from gabriel403/master | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048414 | <NME> Module.php
<BEF> <?php
namespace ZfcUser;
use Zend\ModuleManager\Feature\ConfigProviderInterface;
use Zend\ModuleManager\Feature\ControllerPluginProviderInterface;
use Zend\ModuleManager\Feature\ControllerProviderInterface;
use Zend\ModuleManager\Feature\ServiceProviderInterface;
class Module implements
Co... | 2 | DB adapter is no longer loaded using DI, and uses the service manager instead | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048415 | <NME> Module.php
<BEF> <?php
namespace ZfcUser;
use Zend\ModuleManager\Feature\ConfigProviderInterface;
use Zend\ModuleManager\Feature\ControllerPluginProviderInterface;
use Zend\ModuleManager\Feature\ControllerProviderInterface;
use Zend\ModuleManager\Feature\ServiceProviderInterface;
class Module implements
Co... | 2 | DB adapter is no longer loaded using DI, and uses the service manager instead | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048416 | <NME> docker-machine-nfs.sh
<BEF> #!/bin/bash
#
# The MIT License (MIT)
# Copyright © 2015 Toni Van de Voorde <toni.vdv@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the “Software”), to deal
# in the Software without re... | 27 | Merge pull request #26 from ckortekaas/feature/vmwarefusion | 1 | .sh | sh | mit | adlogix/docker-machine-nfs |
10048417 | <NME> README.md
<BEF> # Flysystem Adapter for Google Drive
[](http://xoops.hypweb.net/)
[](LICENSE)
## Installation
- For Google Drive AP... | 4 | Update README.md | 4 | .md | md | mit | nao-pon/flysystem-google-drive |
10048418 | <NME> docker-machine-nfs.sh
<BEF> #!/bin/bash
#
# The MIT License (MIT)
# Copyright © 2015 Toni Van de Voorde <toni.vdv@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the “Software”), to deal
# in the Software without re... | 20 | Add ascii logo to help page | 0 | .sh | sh | mit | adlogix/docker-machine-nfs |
10048419 | <NME> UserControllerFactory.php
<BEF> <?php
namespace ZfcUser\Factory\Controller;
use Interop\Container\ContainerInterface;
use Zend\Mvc\Controller\ControllerManager;
use Zend\ServiceManager\Factory\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser... | 7 | Actually inject controller dependencies | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048420 | <NME> UserControllerFactory.php
<BEF> <?php
namespace ZfcUser\Factory\Controller;
use Interop\Container\ContainerInterface;
use Zend\Mvc\Controller\ControllerManager;
use Zend\ServiceManager\Factory\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser... | 7 | Actually inject controller dependencies | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048421 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 16 | Update readme, remove out of date info to avoid confusion | 96 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048422 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 16 | Update readme, remove out of date info to avoid confusion | 96 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048423 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Storage;
use Zend\Authentication\Storage,
ZfcUser\Model\UserMapperInterface;
class Db implements Storage
{
/**
* @var Storage
{
/**
* @var StorageInterface
*/
protected $storage;
/**
* @var UserMapper
*/
prote... | 4 | Merge pull request #37 from EvanDotPro/hotfix/interface-name-updates | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048424 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Storage;
use Zend\Authentication\Storage,
ZfcUser\Model\UserMapperInterface;
class Db implements Storage
{
/**
* @var Storage
{
/**
* @var StorageInterface
*/
protected $storage;
/**
* @var UserMapper
*/
prote... | 4 | Merge pull request #37 from EvanDotPro/hotfix/interface-name-updates | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048425 | <NME> register.phtml
<BEF> <h1>Register</h1>
<?php
if(!\ZfcUser\Module::getOption('enable_registration'))
{
print "Registration is disabled";
return;
}
?>
$form->setAttribute('method', 'post');
$form->setAttribute('autocomplete', 'off');
?>
<?php echo $this->partial('_form.phtml', ['form' => $form]);... | 11 | Merge remote-tracking branch 'EvanDotPro/refactoring' | 3 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048426 | <NME> register.phtml
<BEF> <h1>Register</h1>
<?php
if(!\ZfcUser\Module::getOption('enable_registration'))
{
print "Registration is disabled";
return;
}
?>
$form->setAttribute('method', 'post');
$form->setAttribute('autocomplete', 'off');
?>
<?php echo $this->partial('_form.phtml', ['form' => $form]);... | 11 | Merge remote-tracking branch 'EvanDotPro/refactoring' | 3 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048427 | <NME> GoogleDriveAdapter.php
<BEF> <?php
namespace Hypweb\Flysystem\GoogleDrive;
use Google_Service_Drive;
use Google_Service_Drive_DriveFile;
use Google_Service_Drive_FileList;
use Google_Service_Drive_Permission;
use Google_Http_MediaFileUpload;
use League\Flysystem\Adapter\AbstractAdapter;
use League\Flysystem\Adap... | 11 | Fix upload file Google_Service_Exception | 6 | .php | php | mit | nao-pon/flysystem-google-drive |
10048428 | <NME> register.phtml
<BEF> ADDFILE
<MSG> Updated to use new part routes
<DFF> @@ -0,0 +1,6 @@
+<h1>Register</h1>
+<?php
+$form = $this->registerForm;
+$form->setAction($this->url('default', array('namespace' => 'edp-user', 'controller' => 'user', 'action' => 'register')));
+$form->setView($this);
+echo $form;
| 6 | Updated to use new part routes | 0 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048429 | <NME> register.phtml
<BEF> ADDFILE
<MSG> Updated to use new part routes
<DFF> @@ -0,0 +1,6 @@
+<h1>Register</h1>
+<?php
+$form = $this->registerForm;
+$form->setAction($this->url('default', array('namespace' => 'edp-user', 'controller' => 'user', 'action' => 'register')));
+$form->setView($this);
+echo $form;
| 6 | Updated to use new part routes | 0 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048430 | <NME> .travis.yml
<BEF> language: php
php:
- 5.5
- 5.6
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- mysql -e "create database IF NOT EXISTS zfc_user;" -uroot
script:
- ./vendor/bin/phpunit --bootstrap=tests/bootstrap.php
- ./vendor/bin/phpcs -n --standard=PSR2 ./src/ ./tests/
after_script:
- php oc... | 1 | Merge pull request #624 from svycka/patch-1 | 1 | .yml | travis | bsd-3-clause | ZF-Commons/ZfcUser |
10048431 | <NME> .travis.yml
<BEF> language: php
php:
- 5.5
- 5.6
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- mysql -e "create database IF NOT EXISTS zfc_user;" -uroot
script:
- ./vendor/bin/phpunit --bootstrap=tests/bootstrap.php
- ./vendor/bin/phpcs -n --standard=PSR2 ./src/ ./tests/
after_script:
- php oc... | 1 | Merge pull request #624 from svycka/patch-1 | 1 | .yml | travis | bsd-3-clause | ZF-Commons/ZfcUser |
10048432 | <NME> User.php
<BEF> <?php
namespace ZfcUser\Mapper;
use ZfcUser\Entity\UserInterface as UserEntityInterface;
use Zend\Hydrator\HydratorInterface;
class User extends AbstractDbMapper implements UserInterface
{
protected $tableName = 'user';
public function findByEmail($email)
{
$select = $this... | 6 | update to match ZfcBase mapper refactoring | 6 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048433 | <NME> User.php
<BEF> <?php
namespace ZfcUser\Mapper;
use ZfcUser\Entity\UserInterface as UserEntityInterface;
use Zend\Hydrator\HydratorInterface;
class User extends AbstractDbMapper implements UserInterface
{
protected $tableName = 'user';
public function findByEmail($email)
{
$select = $this... | 6 | update to match ZfcBase mapper refactoring | 6 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048434 | <NME> register.phtml
<BEF> <h1><?php echo $this->translate('Register'); ?></h1>
<?php
if (!$this->enableRegistration) {
print "Registration is disabled";
return;
}
$form = $this->registerForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/register'));
$form->setAttribute('method', 'post')... | 1 | Pass form object along to form partial | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048435 | <NME> register.phtml
<BEF> <h1><?php echo $this->translate('Register'); ?></h1>
<?php
if (!$this->enableRegistration) {
print "Registration is disabled";
return;
}
$form = $this->registerForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/register'));
$form->setAttribute('method', 'post')... | 1 | Pass form object along to form partial | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048436 | <NME> User.php
<BEF> ADDFILE
<MSG> Merge remote-tracking branch 'SpiffyJr/feature/mongodb-odm'
<DFF> @@ -0,0 +1,8 @@
+<?php
+
+namespace EdpUser\Entity;
+
+use EdpUser\Model\User as UserModel;
+
+abstract class User extends UserModel
+{}
| 8 | Merge remote-tracking branch 'SpiffyJr/feature/mongodb-odm' | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048437 | <NME> User.php
<BEF> ADDFILE
<MSG> Merge remote-tracking branch 'SpiffyJr/feature/mongodb-odm'
<DFF> @@ -0,0 +1,8 @@
+<?php
+
+namespace EdpUser\Entity;
+
+use EdpUser\Model\User as UserModel;
+
+abstract class User extends UserModel
+{}
| 8 | Merge remote-tracking branch 'SpiffyJr/feature/mongodb-odm' | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048438 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 5 | Change default for login_after_register and update readme | 8 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048439 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 5 | Change default for login_after_register and update readme | 8 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048440 | <NME> cs_CZ.po
<BEF> ADDFILE
<MSG> Add translation for Czech language
<DFF> @@ -0,0 +1,126 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: ZfcUser\n"
+"POT-Creation-Date: 2015-02-09 11:17+0100\n"
+"PO-Revision-Date: 2015-02-09 11:17+0100\n"
+"Last-Translator: Martin Vagovszký <vagovszky@gmail.com>\n"
+"Language-Team: ZF... | 126 | Add translation for Czech language | 0 | .po | po | bsd-3-clause | ZF-Commons/ZfcUser |
10048441 | <NME> cs_CZ.po
<BEF> ADDFILE
<MSG> Add translation for Czech language
<DFF> @@ -0,0 +1,126 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: ZfcUser\n"
+"POT-Creation-Date: 2015-02-09 11:17+0100\n"
+"PO-Revision-Date: 2015-02-09 11:17+0100\n"
+"Last-Translator: Martin Vagovszký <vagovszky@gmail.com>\n"
+"Language-Team: ZF... | 126 | Add translation for Czech language | 0 | .po | po | bsd-3-clause | ZF-Commons/ZfcUser |
10048442 | <NME> AdapterChainTest.php
<BEF> <?php
namespace ZfcUserTest\Authentication\Adapter;
use Zend\EventManager\EventInterface;
use Zend\EventManager\EventManagerInterface;
use Zend\EventManager\SharedEventManagerInterface;
use ZfcUser\Authentication\Adapter\AdapterChain;
use ZfcUser\Authentication\Adapter\AdapterChainEve... | 50 | Added tests for tests noted missing or not finished | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048443 | <NME> AdapterChainTest.php
<BEF> <?php
namespace ZfcUserTest\Authentication\Adapter;
use Zend\EventManager\EventInterface;
use Zend\EventManager\EventManagerInterface;
use Zend\EventManager\SharedEventManagerInterface;
use ZfcUser\Authentication\Adapter\AdapterChain;
use ZfcUser\Authentication\Adapter\AdapterChainEve... | 50 | Added tests for tests noted missing or not finished | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048444 | <NME> UserController.php
<BEF> <?php
namespace ZfcUser\Controller;
use Zend\Form\FormInterface;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Stdlib\ResponseInterface as Response;
use Zend\Stdlib\Parameters;
use Zend\View\Model\ViewModel;
use ZfcUser\Servi... | 1 | Typo on getChangeEmailForm | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048445 | <NME> UserController.php
<BEF> <?php
namespace ZfcUser\Controller;
use Zend\Form\FormInterface;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Stdlib\ResponseInterface as Response;
use Zend\Stdlib\Parameters;
use Zend\View\Model\ViewModel;
use ZfcUser\Servi... | 1 | Typo on getChangeEmailForm | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048446 | <NME> README.md
<BEF> # Docker Machine NFS
## Requirements
* [Docker Machine](https://docs.docker.com/machine/) 0.5.0+
## Mac OS X 10.9+
Activates [NFS](https://en.wikipedia.org/wiki/Network_File_System) for an
existing boot2docker box created through
[Docker Machine](https://docs.docker.com/machine/).
## Install
... | 1 | Use `curl -s` to install the script | 1 | .md | md | mit | adlogix/docker-machine-nfs |
10048447 | <NME> register.phtml
<BEF> <h1><?php echo $this->translate('Register'); ?></h1>
<?php
if (!$this->enableRegistration) {
print "Registration is disabled";
return;
}
$form = $this->registerForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/register'));
$form->setAttribute('method', 'post')... | 1 | Add parameter autocomplete = off on forms with password. | 0 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048448 | <NME> register.phtml
<BEF> <h1><?php echo $this->translate('Register'); ?></h1>
<?php
if (!$this->enableRegistration) {
print "Registration is disabled";
return;
}
$form = $this->registerForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/register'));
$form->setAttribute('method', 'post')... | 1 | Add parameter autocomplete = off on forms with password. | 0 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048449 | <NME> ZfcUserIdentity.php
<BEF> <?php
namespace EdpUser\View\Helper;
use Zend\View\Helper\AbstractHelper,
Zend\Authentication\AuthenticationService;
class EdpUserIdentity extends AbstractHelper
{
/**
* @var AuthenticationService
*/
protected $authService;
/**
* __invoke
*
... | 3 | s/EdpUser/ZfcUser/ | 3 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |