Project

General

Profile

Feature #19159 ยป felogin_recursive.diff

Administrator Admin, 2008-08-06 20:12

View differences:

typo3/sysext/felogin/ext_typoscript_setup.txt (working copy)
plugin.tx_felogin_pi1 {
#storagePid - where are the user records? use single value or a commaseperated list
storagePid = {$styles.content.loginform.pid}
recursive =
#Template File
templateFile = EXT:felogin/template.html
typo3/sysext/felogin/pi1/class.tx_felogin_pi1.php (working copy)
// Get storage PIDs:
if ($this->conf['storagePid']) {
$this->spid = $this->conf['storagePid'];
if (intval($this->conf['recursive'])) {
$this->spid = $this->pi_getPidList($this->conf['storagePid'], intval($this->conf['recursive']));
} else {
$this->spid = $this->conf['storagePid'];
}
} else {
$pids = $GLOBALS['TSFE']->getStorageSiterootPids();
$this->spid = $pids['_STORAGE_PID'];
......
// Login form
$markerArray['###ACTION_URI###'] = $this->getPageLink('',array(),true);
$markerArray['###EXTRA_HIDDEN###'] = $extraHidden; // used by kb_md5fepw extension...
$markerArray['###LEGEND###'] = $this->pi_getLL('login', '', 1);
$markerArray['###LEGEND###'] = $this->pi_getLL('login', '', 1);
$markerArray['###LOGIN_LABEL###'] = $this->pi_getLL('login', '', 1);
$markerArray['###ON_SUBMIT###'] = $onSubmit; // used by kb_md5fepw extension...
$markerArray['###PASSWORD_LABEL###'] = $this->pi_getLL('password', '', 1);
    (1-1/1)