mediabakery / contao-KeyGenerator

KeyGenerator Widget for the Contao 3 Backend

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contao3 Key Generator Wizard

This extension is for Contao 3 and enhances the BE TextField Widget with a keyGenerator Wizard See example:

$GLOBALS['TL_DCA']['tl_member']['fields']['apikey'] = array
(
  'label'         => &$GLOBALS['TL_LANG']['tl_member']['apikey'],
	'exclude'       => true,
	'search'        => false,
	'inputType'     => 'text',
	'wizard'				=> array(array('\KeyGenerator\KeyGenerator','getWizard')),
	'save_callback'	=> array(array('\KeyGenerator\KeyGenerator','setKeyIfEmpty')),
	'eval'          => array('maxlength'=>32, 'feEditable'=>false, 'feViewable'=>false, 'feGroup'=>'rpc', 'tl_class'=>'w50 wizard'),
	'sql'           => "varchar(32) NOT NULL default ''"
);

You can write your own generator. Use the HOOK

The callback method gets the fieldName and the maxlength. It returns a new key-string or false if the method don't want to set the key

// config.php
$GLOBALS['TL_HOOKS']['generateKey'][] = array('\MyClass','generateKey');

// MyClass
public function generateKey($strFieldName, $intLength)
{
  if ($strFieldName == 'simplePasswordField')
  {
    return str_repeat('X',$intLength);
  }
  else if ($strFieldName == 'megaPasswordField')
  {
    return 'pasword123';
  }
  return false;
}

About

KeyGenerator Widget for the Contao 3 Backend


Languages

Language:PHP 88.7%Language:JavaScript 11.3%