Move plugins to Classes/Plugins and add namespaces

This commit is contained in:
Sebastian Meyer 2019-03-14 15:42:34 +01:00
parent 212b8f9ed9
commit 919ee33f82
127 changed files with 890 additions and 1539 deletions

View File

@ -2,7 +2,7 @@
## Our Pledge
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone.
## Our Standards

View File

@ -49,6 +49,25 @@ abstract class AbstractPlugin extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin
*/
protected $template = '';
/**
* Read and parse the template file
*
* @access protected
*
* @param string $part: Name of the subpart to load
*
* @return void
*/
protected function getTemplate($part = '###TEMPLATE###') {
if (!empty($this->conf['templateFile'])) {
// Load template file from configuration.
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), $part);
} else {
// Load default template file.
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/Resources/Private/Templates/'.get_class($this).'.tmpl'), $part);
}
}
/**
* All the needed configuration values are stored in class variables
* Priority: Flexforms > TS-Templates > Extension Configuration > ext_localconf.php
@ -81,6 +100,15 @@ abstract class AbstractPlugin extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin
}
// Read old plugin TS configuration.
$oldPluginConf = $GLOBALS['TSFE']->tmpl->setup['plugin.']['tx_dlf_'.strtolower(get_class($this)).'.'];
if (is_array($oldPluginConf)) {
$conf = \TYPO3\CMS\Core\Utility\ArrayUtility::mergeRecursiceWithOverrule($oldPluginConf, $conf);
}
// Read general TS configuration.
$generalConf = $GLOBALS['TSFE']->tmpl->setup['plugin.'][$this->prefixId.'.'];
@ -114,7 +142,7 @@ abstract class AbstractPlugin extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin
$this->pi_setPiVarDefaults();
// Load translation files.
$this->pi_loadLL();
$this->pi_loadLL('EXT:'.$this->extKey.'/Resources/Private/Language/'.get_class($this).'.xml');
}
@ -215,45 +243,6 @@ abstract class AbstractPlugin extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin
*/
abstract public function main($content, $conf);
/**
* Sets default plugin variables from Typoscript
* (stdWrap backport from TYPO3 6.2)
* @see http://forge.typo3.org/issues/22045
*
* @access public
*
* @return void
*/
public function pi_setPiVarDefaults() {
if (is_array($this->conf['_DEFAULT_PI_VARS.'])) {
foreach ($this->conf['_DEFAULT_PI_VARS.'] as $GPkey => $GPval) {
if (strpos($GPkey, '.')) {
$GPkey = substr($GPkey, 0, -1);
}
if (is_array($this->conf['_DEFAULT_PI_VARS.'][$GPkey.'.']['stdWrap.'])) {
$GPval = $GPval ? $GPval : '';
$this->conf['_DEFAULT_PI_VARS.'][$GPkey] = $this->cObj->stdWrap($GPval, $this->conf['_DEFAULT_PI_VARS.'][$GPkey.'.']['stdWrap.']);
unset ($this->conf['_DEFAULT_PI_VARS.'][$GPkey.'.']['stdWrap.']);
}
}
$this->piVars = Helper::array_merge_recursive_overrule($this->conf['_DEFAULT_PI_VARS.'], is_array($this->piVars) ? $this->piVars : array ());
}
}
/**
* Wraps the input string in a tag with the class attribute set to the class name
*
@ -267,7 +256,7 @@ abstract class AbstractPlugin extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin
if (!$GLOBALS['TSFE']->config['config']['disableWrapInBaseClass']) {
// Use get_class($this) instead of $this->prefixId for content wrapping because $this->prefixId is the same for all plugins.
$content = '<div class="'.str_replace('_', '-', get_class($this)).'">'.$content.'</div>';
$content = '<div class="tx-dlf-'.get_class($this).'">'.$content.'</div>';
if (!$GLOBALS['TSFE']->config['config']['disablePrefixComment']) {

View File

@ -1564,8 +1564,8 @@ final class Document {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
htmlspecialchars(sprintf(Helper::getLL('flash.newCollection'), $collection, $substUid[$collNewUid])),
Helper::getLL('flash.attention', TRUE),
htmlspecialchars(sprintf(Helper::getMessage('flash.newCollection'), $collection, $substUid[$collNewUid])),
Helper::getMessage('flash.attention', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::INFO,
TRUE
);
@ -1625,8 +1625,8 @@ final class Document {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
htmlspecialchars(sprintf(Helper::getLL('flash.newLibrary'), $owner, $ownerUid)),
Helper::getLL('flash.attention', TRUE),
htmlspecialchars(sprintf(Helper::getMessage('flash.newLibrary'), $owner, $ownerUid)),
Helper::getMessage('flash.attention', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::INFO,
TRUE
);
@ -1793,8 +1793,8 @@ final class Document {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
htmlspecialchars(sprintf(Helper::getLL('flash.documentSaved'), $metadata['title'][0], $this->uid)),
Helper::getLL('flash.done', TRUE),
htmlspecialchars(sprintf(Helper::getMessage('flash.documentSaved'), $metadata['title'][0], $this->uid)),
Helper::getMessage('flash.done', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::OK,
TRUE
);

View File

@ -81,14 +81,14 @@ class DocumentTypeCheck {
*
* 1. newspaper
* case 1) - type=newspaper
* - children array([0], [1], [2], ...) -> type = year --> Newspaper Anchor File
* - children array ([0], [1], [2], ...) -> type = year --> Newspaper Anchor File
* case 2) - type=newspaper
* - children array([0]) --> type = year
* - children array([0], [1], [2], ...) --> type = month --> Year Anchor File
* - children array ([0]) --> type = year
* - children array ([0], [1], [2], ...) --> type = month --> Year Anchor File
* case 3) - type=newspaper
* - children array([0]) --> type = year
* - children array([0]) --> type = month
* - children array([0], [1], [2], ...) --> type = day --> Issue
* - children array ([0]) --> type = year
* - children array ([0]) --> type = month
* - children array ([0], [1], [2], ...) --> type = day --> Issue
*/
switch ($toc[0]['type']) {

View File

@ -31,12 +31,12 @@ class Helper {
public static $extKey = 'dlf';
/**
* The locallang array for common use
* The locallang array for flash messages
*
* @var array
* @access protected
*/
protected static $locallang = array ();
protected static $messages = array ();
/**
* Adds a message to the message queue.
@ -679,7 +679,7 @@ class Helper {
}
/**
* Wrapper function for getting localizations in frontend and backend
* Wrapper function for getting localized messages in frontend and backend
*
* @param string $key: The locallang key to translate
* @param boolean $hsc: Should the result be htmlspecialchar()'ed?
@ -687,46 +687,46 @@ class Helper {
*
* @return string The translated string or the given key on failure
*/
public static function getLL($key, $hsc = FALSE, $default = '') {
public static function getMessage($key, $hsc = FALSE, $default = '') {
// Set initial output to default value.
$translated = (string) $default;
// Load common locallang file.
if (empty(self::$locallang)) {
// Load common messages file.
if (empty(self::$messages)) {
$file = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath(self::$extKey, 'common/locallang.xml');
$file = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath(self::$extKey, 'Resources/Private/Language/FlashMessages.xml');
if (TYPO3_MODE === 'FE') {
self::$locallang = $GLOBALS['TSFE']->readLLfile($file);
self::$messages = $GLOBALS['TSFE']->readLLfile($file);
} elseif (TYPO3_MODE === 'BE') {
self::$locallang = $GLOBALS['LANG']->includeLLFile($file, FALSE, TRUE);
self::$messages = $GLOBALS['LANG']->includeLLFile($file, FALSE, TRUE);
} elseif (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Common\Helper->getLL('.$key.', '.$default.', ['.($hsc ? 'TRUE' : 'FALSE').'])] Unexpected TYPO3_MODE "'.TYPO3_MODE.'"', self::$extKey, SYSLOG_SEVERITY_ERROR);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Common\Helper->getMessage('.$key.', '.$default.', ['.($hsc ? 'TRUE' : 'FALSE').'])] Unexpected TYPO3_MODE "'.TYPO3_MODE.'"', self::$extKey, SYSLOG_SEVERITY_ERROR);
}
}
// Get translation.
if (!empty(self::$locallang['default'][$key])) {
if (!empty(self::$messages['default'][$key])) {
if (TYPO3_MODE === 'FE') {
$translated = $GLOBALS['TSFE']->getLLL($key, self::$locallang);
$translated = $GLOBALS['TSFE']->getLLL($key, self::$messages);
} elseif (TYPO3_MODE === 'BE') {
$translated = $GLOBALS['LANG']->getLLL($key, self::$locallang, FALSE);
$translated = $GLOBALS['LANG']->getLLL($key, self::$messages, FALSE);
} elseif (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Common\Helper->getLL('.$key.', '.$default.', ['.($hsc ? 'TRUE' : 'FALSE').'])] Unexpected TYPO3_MODE "'.TYPO3_MODE.'"', self::$extKey, SYSLOG_SEVERITY_ERROR);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Common\Helper->getMessage('.$key.', '.$default.', ['.($hsc ? 'TRUE' : 'FALSE').'])] Unexpected TYPO3_MODE "'.TYPO3_MODE.'"', self::$extKey, SYSLOG_SEVERITY_ERROR);
}

View File

@ -181,8 +181,8 @@ class Indexer {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
htmlspecialchars(sprintf(Helper::getLL('flash.documentIndexed'), $resArray['title'], $doc->uid)),
Helper::getLL('flash.done', TRUE),
htmlspecialchars(sprintf(Helper::getMessage('flash.documentIndexed'), $resArray['title'], $doc->uid)),
Helper::getMessage('flash.done', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::OK,
TRUE
);
@ -191,8 +191,8 @@ class Indexer {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
htmlspecialchars(sprintf(Helper::getLL('flash.documentNotIndexed'), $resArray['title'], $doc->uid)),
Helper::getLL('flash.error', TRUE),
htmlspecialchars(sprintf(Helper::getMessage('flash.documentNotIndexed'), $resArray['title'], $doc->uid)),
Helper::getMessage('flash.error', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::ERROR,
TRUE
);
@ -211,8 +211,8 @@ class Indexer {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
Helper::getLL('flash.solrException', TRUE).'<br />'.htmlspecialchars($e->getMessage()),
Helper::getLL('flash.error', TRUE),
Helper::getMessage('flash.solrException', TRUE).'<br />'.htmlspecialchars($e->getMessage()),
Helper::getMessage('flash.error', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::ERROR,
TRUE
);
@ -237,8 +237,8 @@ class Indexer {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
Helper::getLL('flash.solrNoConnection', TRUE),
Helper::getLL('flash.warning', TRUE),
Helper::getMessage('flash.solrNoConnection', TRUE),
Helper::getMessage('flash.warning', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::WARNING,
TRUE
);
@ -307,8 +307,8 @@ class Indexer {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
Helper::getLL('flash.solrException', TRUE).'<br />'.htmlspecialchars($e->getMessage()),
Helper::getLL('flash.error', TRUE),
Helper::getMessage('flash.solrException', TRUE).'<br />'.htmlspecialchars($e->getMessage()),
Helper::getMessage('flash.error', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::ERROR,
TRUE
);
@ -333,8 +333,8 @@ class Indexer {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
Helper::getLL('flash.solrNoConnection', TRUE),
Helper::getLL('flash.error', TRUE),
Helper::getMessage('flash.solrNoConnection', TRUE),
Helper::getMessage('flash.error', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::ERROR,
TRUE
);
@ -357,8 +357,8 @@ class Indexer {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
htmlspecialchars(sprintf(Helper::getLL('flash.documentDeleted'), $title, $uid)),
Helper::getLL('flash.done', TRUE),
htmlspecialchars(sprintf(Helper::getMessage('flash.documentDeleted'), $title, $uid)),
Helper::getMessage('flash.done', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::OK,
TRUE
);
@ -638,8 +638,8 @@ class Indexer {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
Helper::getLL('flash.solrException', TRUE).'<br />'.htmlspecialchars($e->getMessage()),
Helper::getLL('flash.error', TRUE),
Helper::getMessage('flash.solrException', TRUE).'<br />'.htmlspecialchars($e->getMessage()),
Helper::getMessage('flash.error', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::ERROR,
TRUE
);
@ -805,8 +805,8 @@ class Indexer {
$message = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
Helper::getLL('flash.solrException', TRUE).'<br />'.htmlspecialchars($e->getMessage()),
Helper::getLL('flash.error', TRUE),
Helper::getMessage('flash.solrException', TRUE).'<br />'.htmlspecialchars($e->getMessage()),
Helper::getMessage('flash.error', TRUE),
\TYPO3\CMS\Core\Messaging\FlashMessage::ERROR,
TRUE
);

View File

@ -683,7 +683,7 @@ class ConfigurationForm {
public function __construct() {
// Load localization file.
$GLOBALS['LANG']->includeLLFile('EXT:dlf/locallang.xml');
$GLOBALS['LANG']->includeLLFile('EXT:dlf/Resources/Private/Language/FlashMessages.xml');
// Get current configuration.
$this->conf = array_merge((array) unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['dlf']), (array) \TYPO3\CMS\Core\Utility\GeneralUtility::_POST('data'));

View File

@ -64,23 +64,8 @@ class FormEngine {
*/
public function itemsProcFunc_collectionList(&$params, &$pObj) {
// the access to pi_flexform data has changed in TYPO3 7.6
if (version_compare(TYPO3_version, '7.6', '<')) {
if ($params['row']['pi_flexform']) {
$pi_flexform = \TYPO3\CMS\Core\Utility\GeneralUtility::xml2array($params['row']['pi_flexform']);
$pages = $pi_flexform['data']['sDEF']['lDEF']['pages']['vDEF'];
}
} else {
$pages = $params['row']['pages'];
}
if (!empty($pages)) {
// There is a strange behavior where the uid from the flexform is prepended by the table's name and appended by its title.
@ -121,7 +106,7 @@ class FormEngine {
}
/**
* Helper to get flexform's items array for plugin "tx_dlf_search"
* Helper to get flexform's items array for plugin "Search"
*
* @access public
*
@ -132,23 +117,8 @@ class FormEngine {
*/
public function itemsProcFunc_extendedSearchList(&$params, &$pObj) {
// the access to pi_flexform data has changed in TYPO3 7.6
if (version_compare(TYPO3_version, '7.6', '<')) {
if ($params['row']['pi_flexform']) {
$pi_flexform = \TYPO3\CMS\Core\Utility\GeneralUtility::xml2array($params['row']['pi_flexform']);
$pages = $pi_flexform['data']['sDEF']['lDEF']['pages']['vDEF'];
}
} else {
$pages = $params['row']['pages'];
}
if (!empty($pages)) {
// There is a strange behavior where the uid from the flexform is prepended by the table's name and appended by its title.
@ -189,7 +159,7 @@ class FormEngine {
}
/**
* Helper to get flexform's items array for plugin "tx_dlf_search"
* Helper to get flexform's items array for plugin "Search"
*
* @access public
*
@ -200,23 +170,8 @@ class FormEngine {
*/
public function itemsProcFunc_facetsList(&$params, &$pObj) {
// the access to pi_flexform data has changed in TYPO3 7.6
if (version_compare(TYPO3_version, '7.6', '<')) {
if ($params['row']['pi_flexform']) {
$pi_flexform = \TYPO3\CMS\Core\Utility\GeneralUtility::xml2array($params['row']['pi_flexform']);
$pages = $pi_flexform['data']['sDEF']['lDEF']['pages']['vDEF'];
}
} else {
$pages = $params['row']['pages'];
}
if (!empty($pages)) {
// There is a strange behavior where the uid from the flexform is prepended by the table's name and appended by its title.
@ -257,7 +212,7 @@ class FormEngine {
}
/**
* Helper to get flexform's items array for plugin "tx_dlf_oai"
* Helper to get flexform's items array for plugin "OaiPmh"
*
* @access public
*
@ -268,23 +223,8 @@ class FormEngine {
*/
public function itemsProcFunc_libraryList(&$params, &$pObj) {
// the access to pi_flexform data has changed in TYPO3 7.6
if (version_compare(TYPO3_version, '7.6', '<')) {
if ($params['row']['pi_flexform']) {
$pi_flexform = \TYPO3\CMS\Core\Utility\GeneralUtility::xml2array($params['row']['pi_flexform']);
$pages = $pi_flexform['data']['sDEF']['lDEF']['pages']['vDEF'];
}
} else {
$pages = $params['row']['pages'];
}
if (!empty($pages)) {
// There is a strange behavior where the uid from the flexform is prepended by the table's name and appended by its title.
@ -325,7 +265,7 @@ class FormEngine {
}
/**
* Helper to get flexform's items array for plugin "tx_dlf_search"
* Helper to get flexform's items array for plugin "Search"
*
* @access public
*
@ -336,23 +276,8 @@ class FormEngine {
*/
public function itemsProcFunc_solrList(&$params, &$pObj) {
// the access to pi_flexform data has changed in TYPO3 7.6
if (version_compare(TYPO3_version, '7.6', '<')) {
if ($params['row']['pi_flexform']) {
$pi_flexform = \TYPO3\CMS\Core\Utility\GeneralUtility::xml2array($params['row']['pi_flexform']);
$pages = $pi_flexform['data']['sDEF']['lDEF']['pages']['vDEF'];
}
} else {
$pages = $params['row']['pages'];
}
if (!empty($pages)) {
// There is a strange behavior where the uid from the flexform is prepended by the table's name and appended by its title.
@ -393,7 +318,7 @@ class FormEngine {
}
/**
* Helper to get flexform's items array for plugin "tx_dlf_toolbox"
* Helper to get flexform's items array for plugin "Toolbox"
*
* @access public
*

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -10,16 +12,16 @@
*/
/**
* Plugin 'DLF: Audioplayer' for the 'dlf' extension.
* Plugin AudioPlayer for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_audioplayer extends \Kitodo\Dlf\Common\AbstractPlugin {
class AudioPlayer extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/audioplayer/class.tx_dlf_audioplayer.php';
public $scriptRelPath = 'Classes/Plugins/AudioPlayer.php';
/**
* Holds the current audio file's URL, MIME type and optional label
@ -44,7 +46,7 @@ class tx_dlf_audioplayer extends \Kitodo\Dlf\Common\AbstractPlugin {
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/jPlayer/jquery.jplayer.min.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/audioplayer/js/tx_dlf_audioplayer.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/AudioPlayer/AudioPlayer.js"></script>';
// Add player configuration.
$output[] = '
@ -53,7 +55,7 @@ class tx_dlf_audioplayer extends \Kitodo\Dlf\Common\AbstractPlugin {
</style>
<script id="tx-dlf-audioplayer-initViewer" type="text/javascript">
$(document).ready(function() {
tx_dlf_audioplayer = new dlfAudioPlayer({
AudioPlayer = new dlfAudioPlayer({
audio: {
mimeType: "' . $this->audio['mimetype'].'",
title: "' . $this->audio['label'].'",
@ -127,15 +129,7 @@ class tx_dlf_audioplayer extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/audioplayer/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
// Fill in the template markers.
$markerArray = array (

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -13,16 +15,16 @@ use Kitodo\Dlf\Common\Document;
use Kitodo\Dlf\Common\Helper;
/**
* Plugin 'DLF: Basket' for the 'dlf' extension.
* Plugin 'Basket' for the 'dlf' extension.
*
* @author Christopher Timm <timm@effective-webwork.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_basket extends \Kitodo\Dlf\Common\AbstractPlugin {
class Basket extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/basket/class.tx_dlf_basket.php';
public $scriptRelPath = 'Classes/Plugins/Basket.php';
/**
* The main method of the PlugIn
@ -42,15 +44,7 @@ class tx_dlf_basket extends \Kitodo\Dlf\Common\AbstractPlugin {
$this->setCache(FALSE);
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/basket/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
$subpartArray['entry'] = $this->cObj->getSubpart($this->template, '###ENTRY###');

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -12,19 +14,18 @@
use Kitodo\Dlf\Common\Helper;
/**
* Plugin 'DLF: Newspaper' for the 'dlf' extension.
* Plugin 'Calendar' for the 'dlf' extension.
*
* @author Alexander Bigga <alexander.bigga@slub-dresden.de>
* @copyright Copyright (c) 2016, Alexander Bigga, SLUB Dresden
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_newspaper extends \Kitodo\Dlf\Common\AbstractPlugin {
class Calendar extends \Kitodo\Dlf\Common\AbstractPlugin {
public $extKey = 'dlf';
public $scriptRelPath = 'plugins/newspaper/class.tx_dlf_newspaper.php';
public $scriptRelPath = 'Classes/Plugins/Calendar.php';
/**
* The main method of the PlugIn
@ -68,15 +69,7 @@ class tx_dlf_newspaper extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATECALENDAR###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/newspaper/template.tmpl'), '###TEMPLATECALENDAR###');
}
$this->getTemplate('###TEMPLATECALENDAR###');
// Get all children of year anchor.
$result = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
@ -349,15 +342,7 @@ class tx_dlf_newspaper extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATEYEAR###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/newspaper/template.tmpl'), '###TEMPLATEYEAR###');
}
$this->getTemplate('###TEMPLATEYEAR###');
// Get subpart templates
$subparts['year'] = $this->cObj->getSubpart($this->template, '###LISTYEAR###');

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -14,16 +16,16 @@ use Kitodo\Dlf\Common\Helper;
use Kitodo\Dlf\Common\Solr;
/**
* Plugin 'DLF: Collection' for the 'dlf' extension.
* Plugin 'Collection' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_collection extends \Kitodo\Dlf\Common\AbstractPlugin {
class Collection extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/collection/class.tx_dlf_collection.php';
public $scriptRelPath = 'Classes/Plugins/Collection.php';
/**
* This holds the hook objects
@ -55,7 +57,7 @@ class tx_dlf_collection extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_collection->main('.$content.', [data])] Incomplete plugin configuration', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Collection->main('.$content.', [data])] Incomplete plugin configuration', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
}
@ -64,15 +66,7 @@ class tx_dlf_collection extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/collection/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
// Get hook objects.
$this->hookObjects = Helper::getHookObjects($this->scriptRelPath);
@ -384,7 +378,7 @@ class tx_dlf_collection extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_collection->showSingleCollection('.intval($id).')] Apache Solr not available', $this->extKey, SYSLOG_SEVERITY_ERROR);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Collection->showSingleCollection('.intval($id).')] Apache Solr not available', $this->extKey, SYSLOG_SEVERITY_ERROR);
}

View File

@ -0,0 +1,66 @@
<?php
namespace Kitodo\Dlf\Plugins\Eid;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
* This file is part of the Kitodo and TYPO3 projects.
*
* @license GNU General Public License version 3 or later.
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/
/**
* eID image proxy for plugin 'Page View' of the 'dlf' extension.
*
* @author Alexander Bigga <alexander.bigga@slub-dresden.de>
* @copyright Copyright (c) 2015, Alexander Bigga, SLUB Dresden
* @package TYPO3
* @subpackage tx_dlf
* @access public
*/
class PageViewProxy extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin {
public $scriptRelPath = 'Classes/Plugins/Eid/PageViewProxy.php';
/**
* The main method of the eID script
*
* @access public
*
* @param string $content: The PlugIn content
* @param array $conf: The PlugIn configuration
*
* @return string
*/
public function main($content = '', $conf = array ()) {
$this->cObj = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::class);
$header = \TYPO3\CMS\Core\Utility\GeneralUtility::_GP('header');
$url = \TYPO3\CMS\Core\Utility\GeneralUtility::_GP('url');
$fetchedData = \TYPO3\CMS\Core\Utility\GeneralUtility::getUrl($url, \TYPO3\CMS\Core\Utility\MathUtility::forceIntegerInRange($header, 0, 2, 0));
// Add some header tags
header('Last-Modified: '.gmdate("D, d M Y H:i:s").'GMT');
header('Cache-Control: max-age=3600, must-revalidate');
header('Content-Length: '.strlen($fetchedData));
header('Content-Type: '.finfo_buffer(finfo_open(FILEINFO_MIME), $fetchedData));
// Get last modified date from request header
$fetchedHeader = explode("\n", \TYPO3\CMS\Core\Utility\GeneralUtility::getUrl($url, 2));
foreach ($fetchedHeader as $headerline) {
if (stripos($headerline, 'Last-Modified:') !== FALSE) {
header($headerline);
break;
}
}
echo $fetchedData;
}
}

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins\Eid;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -13,27 +15,27 @@ use Kitodo\Dlf\Common\Helper;
use Kitodo\Dlf\Common\Solr;
/**
* Search suggestions for the plugin 'DLF: Search' of the 'dlf' extension.
* eID search suggestions for plugin 'Search' of the 'dlf' extension.
*
* @author Henrik Lochmann <dev@mentalmotive.com>
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_search_suggest extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin {
class SearchSuggest extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin {
public $scriptRelPath = 'plugins/search/class.tx_dlf_search_suggest.php';
public $scriptRelPath = 'Classes/Plugins/Eid/SearchSuggest.php';
/**
* The main method of the PlugIn
* The main method of the eID script
*
* @access public
*
* @param string $content: The PlugIn content
* @param array $conf: The PlugIn configuration
*
* @return void
* @return string XML response of search suggestions
*/
public function main($content = '', $conf = array ()) {
@ -62,7 +64,3 @@ class tx_dlf_search_suggest extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin {
}
}
$cObj = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('tx_dlf_search_suggest');
$cObj->main();

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -13,16 +15,16 @@ use Kitodo\Dlf\Common\Document;
use Kitodo\Dlf\Common\Helper;
/**
* Plugin 'DLF: Feeds' for the 'dlf' extension.
* Plugin 'Feeds' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_feeds extends \Kitodo\Dlf\Common\AbstractPlugin {
class Feeds extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/feeds/class.tx_dlf_feeds.php';
public $scriptRelPath = 'Classes/Plugins/Feeds.php';
/**
* The main method of the PlugIn

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -15,18 +17,18 @@ use Kitodo\Dlf\Common\Helper;
use Kitodo\Dlf\Common\Solr;
/**
* Plugin 'DLF: List View' for the 'dlf' extension.
* Plugin 'List View' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @author Henrik Lochmann <dev@mentalmotive.com>
* @author Frank Ulrich Weber <fuw@zeutschel.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_listview extends \Kitodo\Dlf\Common\AbstractPlugin {
class ListView extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/listview/class.tx_dlf_listview.php';
public $scriptRelPath = 'Classes/Plugins/ListView.php';
/**
* This holds the field wrap of the metadata
@ -707,7 +709,7 @@ class tx_dlf_listview extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_listview->main('.$content.', [data])] Apache Solr not available', $this->extKey, SYSLOG_SEVERITY_ERROR, $conf);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\ListView->main('.$content.', [data])] Apache Solr not available', $this->extKey, SYSLOG_SEVERITY_ERROR, $conf);
}
@ -737,15 +739,7 @@ class tx_dlf_listview extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/listview/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
$subpartArray['entry'] = $this->cObj->getSubpart($this->template, '###ENTRY###');

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -13,17 +15,17 @@ use Kitodo\Dlf\Common\Document;
use Kitodo\Dlf\Common\Helper;
/**
* Plugin 'DLF: Metadata' for the 'dlf' extension.
* Plugin 'Metadata' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @author Siegfried Schweizer <siegfried.schweizer@sbb.spk-berlin.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_metadata extends \Kitodo\Dlf\Common\AbstractPlugin {
class Metadata extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/metadata/class.tx_dlf_metadata.php';
public $scriptRelPath = 'Classes/Plugins/Metadata.php';
/**
* This holds the hook objects
@ -154,7 +156,7 @@ class tx_dlf_metadata extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_metadata->main('.$content.', [data])] No metadata found for document with UID "'.$this->doc->uid.'"', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Metadata->main('.$content.', [data])] No metadata found for document with UID "'.$this->doc->uid.'"', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
}
@ -196,15 +198,7 @@ class tx_dlf_metadata extends \Kitodo\Dlf\Common\AbstractPlugin {
protected function printMetadata(array $metadataArray) {
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/metadata/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
$output = '';

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -13,16 +15,16 @@ use Kitodo\Dlf\Common\DocumentList;
use Kitodo\Dlf\Common\Helper;
/**
* Plugin 'DLF: Navigation' for the 'dlf' extension.
* Plugin 'Navigation' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_navigation extends \Kitodo\Dlf\Common\AbstractPlugin {
class Navigation extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/navigation/class.tx_dlf_navigation.php';
public $scriptRelPath = 'Classes/Plugins/Navigation.php';
/**
* Display a link to the list view
@ -164,15 +166,7 @@ class tx_dlf_navigation extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/navigation/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
// Steps for X pages backward / forward. Double page view uses double steps.
$pageSteps = $this->conf['pageStep'] * ($this->piVars['double'] + 1);

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -14,16 +16,16 @@ use Kitodo\Dlf\Common\Helper;
use Kitodo\Dlf\Common\Solr;
/**
* Plugin 'DLF: OAI-PMH Interface' for the 'dlf' extension.
* Plugin 'OAI-PMH Interface' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_oai extends \Kitodo\Dlf\Common\AbstractPlugin {
class OaiPmh extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/oai/class.tx_dlf_oai.php';
public $scriptRelPath = 'Classes/Plugins/OaiPmh.php';
/**
* Did an error occur?
@ -82,7 +84,7 @@ class tx_dlf_oai extends \Kitodo\Dlf\Common\AbstractPlugin {
if ($GLOBALS['TYPO3_DB']->sql_affected_rows() === -1) {
// Deletion failed.
$this->devLog('[tx_dlf_oai->deleteExpiredTokens()] Could not delete expired resumption tokens', SYSLOG_SEVERITY_WARNING);
$this->devLog('[\Kitodo\Dlf\Plugins\OaiPmh->deleteExpiredTokens()] Could not delete expired resumption tokens', SYSLOG_SEVERITY_WARNING);
}
}
@ -325,10 +327,10 @@ class tx_dlf_oai extends \Kitodo\Dlf\Common\AbstractPlugin {
// Import node into \DOMDocument.
$mets = $this->oai->importNode($root->item(0), TRUE);
} else {
$this->devLog('[tx_dlf_oai->getMetsData([data])] No METS part found in document with location "'.$metadata['location'].'"', SYSLOG_SEVERITY_ERROR, $metadata);
$this->devLog('[\Kitodo\Dlf\Plugins\OaiPmh->getMetsData([data])] No METS part found in document with location "'.$metadata['location'].'"', SYSLOG_SEVERITY_ERROR, $metadata);
}
} else {
$this->devLog('[tx_dlf_oai->getMetsData([data])] Could not load XML file from "'.$metadata['location'].'"', SYSLOG_SEVERITY_ERROR, $metadata);
$this->devLog('[\Kitodo\Dlf\Plugins\OaiPmh->getMetsData([data])] Could not load XML file from "'.$metadata['location'].'"', SYSLOG_SEVERITY_ERROR, $metadata);
}
if ($mets === NULL) {
@ -381,7 +383,7 @@ class tx_dlf_oai extends \Kitodo\Dlf\Common\AbstractPlugin {
} else {
// Use default stylesheet if no custom stylesheet is given.
$stylesheet = \TYPO3\CMS\Core\Utility\GeneralUtility::locationHeaderUrl(\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/oai/transform.xsl');
$stylesheet = \TYPO3\CMS\Core\Utility\GeneralUtility::locationHeaderUrl(\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Stylesheets/OaiPmh.xsl');
}
$this->oai->appendChild($this->oai->createProcessingInstruction('xml-stylesheet', 'type="text/xsl" href="'.htmlspecialchars($stylesheet, ENT_NOQUOTES, 'UTF-8').'"'));
@ -625,7 +627,7 @@ class tx_dlf_oai extends \Kitodo\Dlf\Common\AbstractPlugin {
$repositoryName = htmlspecialchars($resArray['oai_label'], ENT_NOQUOTES);
} else {
$this->devLog('[tx_dlf_oai->verbIdentify()] Incomplete plugin configuration', SYSLOG_SEVERITY_NOTICE);
$this->devLog('[\Kitodo\Dlf\Plugins\OaiPmh->verbIdentify()] Incomplete plugin configuration', SYSLOG_SEVERITY_NOTICE);
}
// Get earliest datestamp. Use a default value if that fails.
@ -645,7 +647,7 @@ class tx_dlf_oai extends \Kitodo\Dlf\Common\AbstractPlugin {
list ($timestamp) = $GLOBALS['TYPO3_DB']->sql_fetch_row($result);
$earliestDatestamp = gmdate('Y-m-d\TH:i:s\Z', $timestamp);
} else {
$this->devLog('[tx_dlf_oai->verbIdentify()] No records found with PID "'.$this->conf['pages'].'"', SYSLOG_SEVERITY_NOTICE);
$this->devLog('[\Kitodo\Dlf\Plugins\OaiPmh->verbIdentify()] No records found with PID "'.$this->conf['pages'].'"', SYSLOG_SEVERITY_NOTICE);
}
$linkConf = array (
@ -1126,7 +1128,7 @@ class tx_dlf_oai extends \Kitodo\Dlf\Common\AbstractPlugin {
$resumptionToken = $this->oai->createElementNS('http://www.openarchives.org/OAI/2.0/', 'resumptionToken', htmlspecialchars($token, ENT_NOQUOTES, 'UTF-8'));
} else {
$this->devLog('[tx_dlf_oai->verb'.$this->piVars['verb'].'()] Could not create resumption token', SYSLOG_SEVERITY_ERROR);
$this->devLog('[\Kitodo\Dlf\Plugins\OaiPmh->verb'.$this->piVars['verb'].'()] Could not create resumption token', SYSLOG_SEVERITY_ERROR);
}
} else {
@ -1148,8 +1150,3 @@ class tx_dlf_oai extends \Kitodo\Dlf\Common\AbstractPlugin {
}
}
if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/dlf/plugins/oai/class.tx_dlf_oai.php']) {
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/dlf/plugins/oai/class.tx_dlf_oai.php']);
}

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -10,17 +12,17 @@
*/
/**
* Plugin 'DLF: Page Preview' for the 'dlf' extension.
* Plugin 'Page Grid' for the 'dlf' extension.
*
* @author Henrik Lochmann <dev@mentalmotive.com>
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_pagegrid extends \Kitodo\Dlf\Common\AbstractPlugin {
class PageGrid extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/pagegrid/class.tx_dlf_pagegrid.php';
public $scriptRelPath = 'Classes/Plugins/PageGrid.php';
/**
* Renders entry for one page of the current document.
@ -62,7 +64,7 @@ class tx_dlf_pagegrid extends \Kitodo\Dlf\Common\AbstractPlugin {
} else {
$thumbnailFile = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/pagegrid/placeholder.jpg';
$thumbnailFile = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Images/PageGridPlaceholder.jpg';
}
@ -198,15 +200,7 @@ class tx_dlf_pagegrid extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/pagegrid/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
$entryTemplate = $this->cObj->getSubpart($this->template, '###ENTRY###');
@ -214,7 +208,7 @@ class tx_dlf_pagegrid extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_pagegrid->main('.$content.', [data])] No template subpart for list entry found', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\PageGrid->main('.$content.', [data])] No template subpart for list entry found', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
}

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -10,16 +12,16 @@
*/
/**
* Plugin 'DLF: Pageview' for the 'dlf' extension.
* Plugin 'Page View' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_pageview extends \Kitodo\Dlf\Common\AbstractPlugin {
class PageView extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/pageview/class.tx_dlf_pageview.php';
public $scriptRelPath = 'Classes/Plugins/PageView.php';
/**
* Holds the controls to add to the map
@ -64,21 +66,21 @@ class tx_dlf_pageview extends \Kitodo\Dlf\Common\AbstractPlugin {
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/OpenLayers/ol3-dlf.js"></script>';
// Add viewer library.
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/pageview/tx_dlf_utils.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/PageView/Utility.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/pageview/tx_dlf_ol3.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/PageView/OL3.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/pageview/tx_dlf_ol3_styles.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/PageView/OL3Styles.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/pageview/tx_dlf_ol3_source.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/PageView/OL3Sources.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/pageview/tx_dlf_altoparser.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/PageView/AltoParser.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/pageview/tx_dlf_pageview_imagemanipulation_control.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/PageView/ImageManipulationControl.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/pageview/tx_dlf_pageview_fulltext_control.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/PageView/FulltextControl.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/pageview/tx_dlf_pageview.js"></script>';
$output[] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/PageView/PageView.js"></script>';
// Add viewer configuration.
$output[] = '
@ -250,7 +252,7 @@ class tx_dlf_pageview extends \Kitodo\Dlf\Common\AbstractPlugin {
// Configure @action URL for form.
$linkConf = array (
'parameter' => $GLOBALS['TSFE']->id,
'additionalParams' => '&eID=tx_dlf_geturl_eid&url='.urlencode($image['url']),
'additionalParams' => '&eID=tx_dlf_pageview_proxy&url='.urlencode($image['url']),
);
$image['url'] = $this->cObj->typoLink_URL($linkConf);
@ -264,7 +266,7 @@ class tx_dlf_pageview extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_pageview->getImage('.$page.')] File not found in fileGrp "'.$fileGrp.'"', $this->extKey, SYSLOG_SEVERITY_WARNING);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\PageView->getImage('.$page.')] File not found in fileGrp "'.$fileGrp.'"', $this->extKey, SYSLOG_SEVERITY_WARNING);
}
@ -297,7 +299,7 @@ class tx_dlf_pageview extends \Kitodo\Dlf\Common\AbstractPlugin {
// Configure @action URL for form.
$linkConf = array (
'parameter' => $GLOBALS['TSFE']->id,
'additionalParams' => '&eID=tx_dlf_geturl_eid&url='.urlencode($fulltext['url']),
'additionalParams' => '&eID=tx_dlf_pageview_proxy&url='.urlencode($fulltext['url']),
);
$fulltext['url'] = $this->cObj->typoLink_URL($linkConf);
@ -308,7 +310,7 @@ class tx_dlf_pageview extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_pageview->getFulltext('.$page.')] File not found in fileGrp "'.$this->conf['fileGrpFulltext'].'"', $this->extKey, SYSLOG_SEVERITY_WARNING);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\PageView->getFulltext('.$page.')] File not found in fileGrp "'.$this->conf['fileGrpFulltext'].'"', $this->extKey, SYSLOG_SEVERITY_WARNING);
}
@ -367,15 +369,7 @@ class tx_dlf_pageview extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/pageview/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
// Get image data.
$this->images[0] = $this->getImage($this->piVars['page']);

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -16,18 +18,18 @@ use Kitodo\Dlf\Common\Indexer;
use Kitodo\Dlf\Common\Solr;
/**
* Plugin 'DLF: Search' for the 'dlf' extension.
* Plugin 'Search' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @author Henrik Lochmann <dev@mentalmotive.com>
* @author Frank Ulrich Weber <fuw@zeutschel.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_search extends \Kitodo\Dlf\Common\AbstractPlugin {
class Search extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/search/class.tx_dlf_search.php';
public $scriptRelPath = 'Classes/Plugins/Search.php';
/**
* Adds the JS files necessary for search suggestions
@ -50,13 +52,13 @@ class tx_dlf_search extends \Kitodo\Dlf\Common\AbstractPlugin {
if ($GLOBALS['TYPO3_DB']->sql_num_rows($result)) {
$GLOBALS['TSFE']->additionalHeaderData[$this->prefixId.'_search_suggest'] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'plugins/search/tx_dlf_search_suggest.js"></script>';
$GLOBALS['TSFE']->additionalHeaderData[$this->prefixId.'_search_suggest'] = '<script type="text/javascript" src="'.\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::siteRelPath($this->extKey).'Resources/Public/Javascript/Search/Suggester.js"></script>';
} else {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_search->addAutocompleteJS()] No metadata fields configured for search suggestions', $this->extKey, SYSLOG_SEVERITY_WARNING);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Search->addAutocompleteJS()] No metadata fields configured for search suggestions', $this->extKey, SYSLOG_SEVERITY_WARNING);
}
@ -251,7 +253,7 @@ class tx_dlf_search extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_search->addFacetsMenu()] Incomplete plugin configuration', $this->extKey, SYSLOG_SEVERITY_WARNING);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Search->addFacetsMenu()] Incomplete plugin configuration', $this->extKey, SYSLOG_SEVERITY_WARNING);
}
@ -280,7 +282,7 @@ class tx_dlf_search extends \Kitodo\Dlf\Common\AbstractPlugin {
$TSconfig['special'] = 'userfunction';
$TSconfig['special.']['userFunc'] = 'tx_dlf_search->makeFacetsMenuArray';
$TSconfig['special.']['userFunc'] = 'Kitodo\\Dlf\\Plugins\\Search->makeFacetsMenuArray';
$TSconfig['special.']['facets'] = $facets;
@ -453,7 +455,7 @@ class tx_dlf_search extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_search->main('.$content.', [data])] Incomplete plugin configuration', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Search->main('.$content.', [data])] Incomplete plugin configuration', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
}
@ -486,15 +488,7 @@ class tx_dlf_search extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/search/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
// Configure @action URL for form.
$linkConf = array (
@ -533,7 +527,7 @@ class tx_dlf_search extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_search->main('.$content.', [data])] Apache Solr not available', $this->extKey, SYSLOG_SEVERITY_ERROR, $conf);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Search->main('.$content.', [data])] Apache Solr not available', $this->extKey, SYSLOG_SEVERITY_ERROR, $conf);
}
@ -673,7 +667,7 @@ class tx_dlf_search extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_search->main('.$content.', [data])] Apache Solr not available', $this->extKey, SYSLOG_SEVERITY_ERROR, $conf);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Search->main('.$content.', [data])] Apache Solr not available', $this->extKey, SYSLOG_SEVERITY_ERROR, $conf);
}
@ -796,7 +790,7 @@ class tx_dlf_search extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_search->makeFacetsMenuArray('.$content.', [data])] Apache Solr not available', $this->extKey, SYSLOG_SEVERITY_ERROR, $conf);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Search->makeFacetsMenuArray('.$content.', [data])] Apache Solr not available', $this->extKey, SYSLOG_SEVERITY_ERROR, $conf);
}

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -12,16 +14,16 @@
use Kitodo\Dlf\Common\Helper;
/**
* Plugin 'DLF: Statistics' for the 'dlf' extension.
* Plugin 'Statistics' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_statistics extends \Kitodo\Dlf\Common\AbstractPlugin {
class Statistics extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/statistics/class.tx_dlf_statistics.php';
public $scriptRelPath = 'Classes/Plugins/Statistics.php';
/**
* The main method of the PlugIn
@ -45,7 +47,7 @@ class tx_dlf_statistics extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_statistics->main('.$content.', [data])] Incomplete plugin configuration', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Statistics->main('.$content.', [data])] Incomplete plugin configuration', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
}

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -12,16 +14,16 @@
use Kitodo\Dlf\Common\Helper;
/**
* Plugin 'DLF: Viewer' for the 'dlf' extension.
* Plugin 'Table Of Contents' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_toc extends \Kitodo\Dlf\Common\AbstractPlugin {
class TableOfContents extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/toc/class.tx_dlf_toc.php';
public $scriptRelPath = 'Classes/Plugins/TableOfContents.php';
/**
* This holds the active entries according to the currently selected page
@ -163,7 +165,7 @@ class tx_dlf_toc extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_toc->main('.$content.', [data])] Incomplete plugin configuration', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\TableOfContents->main('.$content.', [data])] Incomplete plugin configuration', $this->extKey, SYSLOG_SEVERITY_WARNING, $conf);
}
@ -172,21 +174,13 @@ class tx_dlf_toc extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/toc/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
$TSconfig = array ();
$TSconfig['special'] = 'userfunction';
$TSconfig['special.']['userFunc'] = 'tx_dlf_toc->makeMenuArray';
$TSconfig['special.']['userFunc'] = 'Kitodo\\Dlf\\Plugins\\TableOfContents->makeMenuArray';
$TSconfig = Helper::array_merge_recursive_overrule($this->conf['menuConf.'], $TSconfig);

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -10,16 +12,16 @@
*/
/**
* Plugin 'DLF: Toolbox' for the 'dlf' extension.
* Plugin 'Toolbox' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_toolbox extends \Kitodo\Dlf\Common\AbstractPlugin {
class Toolbox extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/toolbox/class.tx_dlf_toolbox.php';
public $scriptRelPath = 'Classes/Plugins/Toolbox.php';
/**
* The main method of the PlugIn
@ -43,15 +45,7 @@ class tx_dlf_toolbox extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/toolbox/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
// Build data array.
$data = array (

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins\Tools;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -12,17 +14,17 @@
use Kitodo\Dlf\Common\Helper;
/**
* Tool 'Fulltext selection' for the plugin 'DLF: Toolbox' of the 'dlf' extension.
* Fulltext tool for the plugin 'Toolbox' of the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @author Alexander Bigga <alexander.bigga@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_toolsFulltext extends \Kitodo\Dlf\Common\AbstractPlugin {
class FulltextTool extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/toolbox/tools/fulltext/class.tx_dlf_toolsFulltext.php';
public $scriptRelPath = 'Classes/Plugins/Tools/FulltextTool.php';
/**
* The main method of the PlugIn
@ -76,15 +78,7 @@ class tx_dlf_toolsFulltext extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['toolTemplateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['toolTemplateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/toolbox/tools/fulltext/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
$fullTextFile = $this->doc->physicalStructureInfo[$this->doc->physicalStructure[$this->piVars['page']]]['files'][$this->conf['fileGrpFulltext']];

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins\Tools;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -12,16 +14,16 @@
use Kitodo\Dlf\Common\Helper;
/**
* Tool 'Image Download' for the plugin 'DLF: Toolbox' of the 'dlf' extension.
* Image Download tool for the plugin 'Toolbox' of the 'dlf' extension.
*
* @author Alexander Bigga <alexander.bigga@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_toolsImagedownload extends \Kitodo\Dlf\Common\AbstractPlugin {
class ImageDownloadTool extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/toolbox/tools/imagedownload/class.tx_dlf_toolsImagedownload.php';
public $scriptRelPath = 'Classes/Plugins/Tools/ImageDownloadTool.php';
/**
* The main method of the PlugIn
@ -75,15 +77,7 @@ class tx_dlf_toolsImagedownload extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['toolTemplateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['toolTemplateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/toolbox/tools/imagedownload/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
// Get left or single page download.
$markerArray['###IMAGE_LEFT###'] = $this->piVars['double'] == 1 ? $this->getImage($this->piVars['page'], $this->pi_getLL('leftPage', '')) : $this->getImage($this->piVars['page'], $this->pi_getLL('singlePage', ''));
@ -145,7 +139,7 @@ class tx_dlf_toolsImagedownload extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_toolsImagedownload->getImage('.$page.')] File not found in fileGrp "'.$fileGrp.'"', $this->extKey, SYSLOG_SEVERITY_WARNING);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Tools\ImageDownloadTool->getImage('.$page.')] File not found in fileGrp "'.$fileGrp.'"', $this->extKey, SYSLOG_SEVERITY_WARNING);
}

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins\Tools;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -12,16 +14,16 @@
use Kitodo\Dlf\Common\Helper;
/**
* Tool 'Image manipulation' for the plugin 'DLF: Toolbox' of the 'dlf' extension.
* Image Manipulation tool for the plugin 'Toolbox' of the 'dlf' extension.
*
* @author Jacob Mendt <Jacob.Mendt@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_toolsImagemanipulation extends \Kitodo\Dlf\Common\AbstractPlugin {
class ImageManipulationTool extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/toolbox/tools/imagemanipulation/class.tx_dlf_toolsImagemanipulation.php';
public $scriptRelPath = 'Classes/Plugins/Tools/ImageManipulationTool.php';
/**
* The main method of the PlugIn
@ -44,15 +46,7 @@ class tx_dlf_toolsImagemanipulation extends \Kitodo\Dlf\Common\AbstractPlugin {
$this->loadDocument();
// Load template file.
if (!empty($this->conf['toolTemplateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['toolTemplateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/toolbox/tools/imagemanipulation/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
$markerArray['###IMAGEMANIPULATION_SELECT###'] = '<span class="tx-dlf-tools-imagetools" id="tx-dlf-tools-imagetools" data-dic="imagemanipulation-on:'
.$this->pi_getLL('imagemanipulation-on', '', TRUE).';imagemanipulation-off:'

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins\Tools;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -12,17 +14,17 @@
use Kitodo\Dlf\Common\Helper;
/**
* Tool 'PDF Download' for the plugin 'DLF: Toolbox' of the 'dlf' extension.
* PDF Download tool for the plugin 'Toolbox' of the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @author Alexander Bigga <alexander.bigga@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_toolsPdf extends \Kitodo\Dlf\Common\AbstractPlugin {
class PdfDownloadTool extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/toolbox/tools/pdf/class.tx_dlf_toolsPdf.php';
public $scriptRelPath = 'Classes/Plugins/Tools/PdfDownloadTool.php';
/**
* The main method of the PlugIn
@ -76,15 +78,7 @@ class tx_dlf_toolsPdf extends \Kitodo\Dlf\Common\AbstractPlugin {
}
// Load template file.
if (!empty($this->conf['toolTemplateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['toolTemplateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/toolbox/tools/pdf/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
// Get single page downloads.
$markerArray['###PAGE###'] = $this->getPageLink();
@ -128,7 +122,7 @@ class tx_dlf_toolsPdf extends \Kitodo\Dlf\Common\AbstractPlugin {
}
if (TYPO3_DLOG && empty($page1Link) && empty($page2Link)) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_toolsPdf->getPageLink()] '.
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Tools\PdfDownloadTool->getPageLink()] '.
'File not found in fileGrp "'.
$this->conf['fileGrpDownload'].'"',
$this->extKey,
@ -190,7 +184,7 @@ class tx_dlf_toolsPdf extends \Kitodo\Dlf\Common\AbstractPlugin {
if (TYPO3_DLOG) {
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[tx_dlf_toolsPdf->getWorkLink()] File not found in fileGrp "'.$this->conf['fileGrpDownload'].'"', $this->extKey, SYSLOG_SEVERITY_WARNING);
\TYPO3\CMS\Core\Utility\GeneralUtility::devLog('[\Kitodo\Dlf\Plugins\Tools\PdfDownloadTool->getWorkLink()] File not found in fileGrp "'.$this->conf['fileGrpDownload'].'"', $this->extKey, SYSLOG_SEVERITY_WARNING);
}

View File

@ -1,4 +1,6 @@
<?php
namespace Kitodo\Dlf\Plugins;
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
@ -10,16 +12,16 @@
*/
/**
* Plugin 'DLF: Validator' for the 'dlf' extension.
* Plugin 'Validator' for the 'dlf' extension.
*
* @author Sebastian Meyer <sebastian.meyer@slub-dresden.de>
* @package TYPO3
* @subpackage tx_dlf
* @subpackage dlf
* @access public
*/
class tx_dlf_validator extends \Kitodo\Dlf\Common\AbstractPlugin {
class Validator extends \Kitodo\Dlf\Common\AbstractPlugin {
public $scriptRelPath = 'plugins/validator/class.tx_dlf_validator.php';
public $scriptRelPath = 'Classes/Plugins/Validator.php';
/**
* The main method of the PlugIn
@ -39,15 +41,7 @@ class tx_dlf_validator extends \Kitodo\Dlf\Common\AbstractPlugin {
$this->setCache(FALSE);
// Load template file.
if (!empty($this->conf['templateFile'])) {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource($this->conf['templateFile']), '###TEMPLATE###');
} else {
$this->template = $this->cObj->getSubpart($this->cObj->fileResource('EXT:dlf/plugins/validator/template.tmpl'), '###TEMPLATE###');
}
$this->getTemplate();
// Load current document.
$this->loadDocument();

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/audioplayer/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -43,7 +43,7 @@
<excludeOther>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/audioplayer/locallang.xml:tt_content.pi_flexform.excludeOther</label>
<label>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.excludeOther</label>
<config>
<type>check</type>
<default>1</default>
@ -53,7 +53,7 @@
<elementId>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/audioplayer/locallang.xml:tt_content.pi_flexform.elementId</label>
<label>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.elementId</label>
<config>
<type>input</type>
<eval>required,alphanum_x,nospace</eval>
@ -64,7 +64,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/audioplayer/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/AudioPlayer.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/basket/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -37,7 +37,7 @@
<pregeneration>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/basket/locallang.xml:tt_content.pi_flexform.preGeneration</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.preGeneration</label>
<config>
<type>check</type>
<default>0</default>
@ -47,7 +47,7 @@
<pdfgenerate>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/basket/locallang.xml:tt_content.pi_flexform.pdfGenerate</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfGenerate</label>
<config>
<type>input</type>
<eval>required</eval>
@ -57,7 +57,7 @@
<pdfdownload>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/basket/locallang.xml:tt_content.pi_flexform.pdfDownload</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfDownload</label>
<config>
<type>input</type>
<eval>required</eval>
@ -68,7 +68,7 @@
<pdfprint>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/basket/locallang.xml:tt_content.pi_flexform.pdfPrint</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfPrint</label>
<config>
<type>input</type>
<eval>required</eval>
@ -79,7 +79,7 @@
<pdfparams>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/basket/locallang.xml:tt_content.pi_flexform.pdfParams</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfParams</label>
<config>
<type>input</type>
<eval>required</eval>
@ -90,7 +90,7 @@
<pdfparamseparator>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/basket/locallang.xml:tt_content.pi_flexform.pdfParamSeparator</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.pdfParamSeparator</label>
<config>
<type>input</type>
<eval>required</eval>
@ -101,7 +101,7 @@
<basketGoToButton>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/basket/locallang.xml:tt_content.pi_flexform.basketGoToButton</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.basketGoToButton</label>
<config>
<type>check</type>
<default>0</default>
@ -111,7 +111,7 @@
<targetBasket>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/basket/locallang.xml:tt_content.pi_flexform.targetBasket</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.targetBasket</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -131,7 +131,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/basket/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Basket.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/newspaper/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Calendar.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -43,7 +43,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/newspaper/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Calendar.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -45,7 +45,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.collections</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.collections</label>
<config>
<type>select</type>
<items type="array"/>
@ -61,7 +61,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.solrcore</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.solrcore</label>
<config>
<type>select</type>
<items type="array"></items>
@ -75,20 +75,20 @@
<show_userdefined>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.show_userdefined</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined</label>
<config>
<type>select</type>
<items type="array">
<numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.show_userdefined.all</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined.all</numIndex>
<numIndex index="1">-1</numIndex>
</numIndex>
<numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.show_userdefined.none</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined.none</numIndex>
<numIndex index="1">0</numIndex>
</numIndex>
<numIndex index="2" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.show_userdefined.exclusive</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.show_userdefined.exclusive</numIndex>
<numIndex index="1">1</numIndex>
</numIndex>
</items>
@ -101,7 +101,7 @@
<dont_show_single>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.dont_show_single</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.dont_show_single</label>
<config>
<type>check</type>
<default>0</default>
@ -111,7 +111,7 @@
<randomize>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.randomize</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.randomize</label>
<config>
<type>check</type>
<default>0</default>
@ -121,7 +121,7 @@
<targetPid>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.targetPid</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.targetPid</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -141,7 +141,7 @@
<targetFeed>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.targetFeed</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.targetFeed</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -155,7 +155,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/collection/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Collection.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/feeds/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -45,7 +45,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/feeds/locallang.xml:tt_content.pi_flexform.collections</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.collections</label>
<config>
<type>select</type>
<items type="array"></items>
@ -60,7 +60,7 @@
<excludeOther>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/feeds/locallang.xml:tt_content.pi_flexform.excludeOther</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.excludeOther</label>
<config>
<type>check</type>
<default>0</default>
@ -71,7 +71,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/feeds/locallang.xml:tt_content.pi_flexform.library</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.library</label>
<config>
<type>select</type>
<items type="array"></items>
@ -85,7 +85,7 @@
<limit>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/feeds/locallang.xml:tt_content.pi_flexform.limit</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.limit</label>
<config>
<type>input</type>
<eval>required,num,int</eval>
@ -96,7 +96,7 @@
<prependSuperiorTitle>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/feeds/locallang.xml:tt_content.pi_flexform.prependSuperiorTitle</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.prependSuperiorTitle</label>
<config>
<type>check</type>
<default>0</default>
@ -106,7 +106,7 @@
<targetPid>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/feeds/locallang.xml:tt_content.pi_flexform.targetPid</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.targetPid</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -126,7 +126,7 @@
<title>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/feeds/locallang.xml:tt_content.pi_flexform.title</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.title</label>
<config>
<type>input</type>
<eval>required,trim</eval>
@ -136,7 +136,7 @@
<description>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/feeds/locallang.xml:tt_content.pi_flexform.description</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Feeds.xml:tt_content.pi_flexform.description</label>
<config>
<type>input</type>
<eval>trim</eval>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/listview/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -43,7 +43,7 @@
<limit>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/listview/locallang.xml:tt_content.pi_flexform.limit</label>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.limit</label>
<config>
<type>input</type>
<eval>required,num,int</eval>
@ -54,7 +54,7 @@
<targetPid>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/listview/locallang.xml:tt_content.pi_flexform.targetPid</label>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.targetPid</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -74,7 +74,7 @@
<getTitle>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/listview/locallang.xml:tt_content.pi_flexform.getTitle</label>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.getTitle</label>
<config>
<type>check</type>
<default>0</default>
@ -84,7 +84,7 @@
<basketButton>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/listview/locallang.xml:tt_content.pi_flexform.basketButton</label>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.basketButton</label>
<config>
<type>check</type>
<default>0</default>
@ -94,7 +94,7 @@
<targetBasket>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/listview/locallang.xml:tt_content.pi_flexform.targetBasket</label>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.targetBasket</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -108,7 +108,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/listview/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/ListView.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -43,7 +43,7 @@
<excludeOther>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.excludeOther</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.excludeOther</label>
<config>
<type>check</type>
<default>1</default>
@ -54,7 +54,7 @@
<TCEforms>
<onChange>reload</onChange>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.linkTitle</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.linkTitle</label>
<config>
<type>check</type>
<default>1</default>
@ -65,7 +65,7 @@
<TCEforms>
<displayCond>FIELD:linkTitle:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.targetPid</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.targetPid</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -85,7 +85,7 @@
<getTitle>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.getTitle</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.getTitle</label>
<config>
<type>check</type>
<default>1</default>
@ -95,7 +95,7 @@
<showFull>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.showFull</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.showFull</label>
<config>
<type>check</type>
<default>1</default>
@ -105,20 +105,20 @@
<rootline>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.rootline</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline</label>
<config>
<type>select</type>
<items type="array">
<numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.rootline.none</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline.none</numIndex>
<numIndex index="1">0</numIndex>
</numIndex>
<numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.rootline.all</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline.all</numIndex>
<numIndex index="1">1</numIndex>
</numIndex>
<numIndex index="2" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.rootline.titledata</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.rootline.titledata</numIndex>
<numIndex index="1">2</numIndex>
</numIndex>
</items>
@ -132,7 +132,7 @@
<separator>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.separator</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.separator</label>
<config>
<type>input</type>
<eval>required,trim</eval>
@ -143,7 +143,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/metadata/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Metadata.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/navigation/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -43,7 +43,7 @@
<pageStep>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/navigation/locallang.xml:tt_content.pi_flexform.pageStep</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.pageStep</label>
<config>
<type>input</type>
<eval>required,num,int</eval>
@ -54,7 +54,7 @@
<targetPid>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/navigation/locallang.xml:tt_content.pi_flexform.targetPid</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.targetPid</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -74,7 +74,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/navigation/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Navigation.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/oai/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -46,7 +46,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/oai/locallang.xml:tt_content.pi_flexform.library</label>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.library</label>
<config>
<type>select</type>
<renderType>selectSingle</renderType>
@ -61,7 +61,7 @@
<limit>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/oai/locallang.xml:tt_content.pi_flexform.limit</label>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.limit</label>
<config>
<type>input</type>
<eval>required,num,int</eval>
@ -72,7 +72,7 @@
<expired>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/oai/locallang.xml:tt_content.pi_flexform.expired</label>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.expired</label>
<config>
<type>input</type>
<eval>required,num,int</eval>
@ -83,7 +83,7 @@
<show_userdefined>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/oai/locallang.xml:tt_content.pi_flexform.show_userdefined</label>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.show_userdefined</label>
<config>
<type>check</type>
<default>0</default>
@ -94,7 +94,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/oai/locallang.xml:tt_content.pi_flexform.solrcore</label>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.solrcore</label>
<config>
<type>select</type>
<items type="array"></items>
@ -109,7 +109,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/oai/locallang.xml:tt_content.pi_flexform.solr_limit</label>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.solr_limit</label>
<config>
<type>input</type>
<eval>required,num,int</eval>
@ -120,7 +120,7 @@
<stylesheet>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/oai/locallang.xml:tt_content.pi_flexform.stylesheet</label>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.stylesheet</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>
@ -135,7 +135,7 @@
<unqualified_epicur>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/oai/locallang.xml:tt_content.pi_flexform.unqualified_epicur</label>
<label>LLL:EXT:dlf/Resources/Private/Language/OaiPmh.xml:tt_content.pi_flexform.unqualified_epicur</label>
<config>
<type>check</type>
<default>0</default>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/pagegrid/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -43,7 +43,7 @@
<limit>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pagegrid/locallang.xml:tt_content.pi_flexform.limit</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.limit</label>
<config>
<type>input</type>
<eval>required,num,int</eval>
@ -54,7 +54,7 @@
<placeholder>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pagegrid/locallang.xml:tt_content.pi_flexform.placeholder</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.placeholder</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>
@ -68,7 +68,7 @@
<targetPid>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pagegrid/locallang.xml:tt_content.pi_flexform.targetPid</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.targetPid</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -88,7 +88,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pagegrid/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageGrid.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -43,7 +43,7 @@
<excludeOther>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.excludeOther</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.excludeOther</label>
<config>
<type>check</type>
<default>1</default>
@ -53,16 +53,16 @@
<features>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.features</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.features</label>
<config>
<type>select</type>
<items type="array">
<numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.features.overviewmap</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.features.overviewmap</numIndex>
<numIndex index="1">OverviewMap</numIndex>
</numIndex>
<numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.features.zoompanel</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.features.zoompanel</numIndex>
<numIndex index="1">ZoomPanel</numIndex>
</numIndex>
</items>
@ -76,7 +76,7 @@
<elementId>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.elementId</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.elementId</label>
<config>
<type>input</type>
<eval>required,alphanum_x,nospace</eval>
@ -87,7 +87,7 @@
<crop>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.crop</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.crop</label>
<config>
<type>check</type>
<default>0</default>
@ -97,7 +97,7 @@
<useInternalProxy>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.useInternalProxy</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.useInternalProxy</label>
<config>
<type>check</type>
<default>0</default>
@ -107,7 +107,7 @@
<magnifier>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.magnifier</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.magnifier</label>
<config>
<type>check</type>
<default>0</default>
@ -117,7 +117,7 @@
<basketButton>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.basketButton</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.basketButton</label>
<config>
<type>check</type>
<default>0</default>
@ -127,7 +127,7 @@
<targetBasket>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.targetBasket</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.targetBasket</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -147,7 +147,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/pageview/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/PageView.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -45,16 +45,16 @@
<fulltext>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.fulltext</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.fulltext</label>
<config>
<type>radio</type>
<items type="array">
<numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.fulltext.yes</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.fulltext.yes</numIndex>
<numIndex index="1">1</numIndex>
</numIndex>
<numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.fulltext.no</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.fulltext.no</numIndex>
<numIndex index="1">0</numIndex>
</numIndex>
</items>
@ -67,7 +67,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.solrcore</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.solrcore</label>
<config>
<type>select</type>
<items type="array"></items>
@ -82,7 +82,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.extSearch.slotCount</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.extSearch.slotCount</label>
<config>
<type>input</type>
<eval>num,int</eval>
@ -98,7 +98,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.extSearch.fields</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.extSearch.fields</label>
<config>
<type>select</type>
<items type="array"></items>
@ -113,24 +113,24 @@
<searchIn>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.searchIn</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn</label>
<config>
<type>select</type>
<items type="array">
<numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.searchIn.none</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.none</numIndex>
<numIndex index="1">none</numIndex>
</numIndex>
<numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.searchIn.document</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.document</numIndex>
<numIndex index="1">document</numIndex>
</numIndex>
<numIndex index="2" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.searchIn.collection</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.collection</numIndex>
<numIndex index="1">collection</numIndex>
</numIndex>
<numIndex index="3" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.searchIn.all</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.searchIn.all</numIndex>
<numIndex index="1">all</numIndex>
</numIndex>
</items>
@ -144,7 +144,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.collections</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.collections</label>
<config>
<type>select</type>
<items type="array"/>
@ -160,7 +160,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.facets</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.facets</label>
<config>
<type>select</type>
<items type="array"></items>
@ -176,7 +176,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.limitFacets</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.limitFacets</label>
<config>
<type>input</type>
<eval>num,int</eval>
@ -191,7 +191,7 @@
<resetFacets>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.resetFacets</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.resetFacets</label>
<config>
<type>check</type>
<default>0</default>
@ -201,16 +201,16 @@
<sortingFacets>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.sortingFacets</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sortingFacets</label>
<config>
<type>select</type>
<items type="array">
<numIndex index="0" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.sortingFacets.count</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sortingFacets.count</numIndex>
<numIndex index="1">count</numIndex>
</numIndex>
<numIndex index="1" type="array">
<numIndex index="0">LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.sortingFacets.index</numIndex>
<numIndex index="0">LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.sortingFacets.index</numIndex>
<numIndex index="1">index</numIndex>
</numIndex>
</items>
@ -223,7 +223,7 @@
<suggest>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.suggest</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.suggest</label>
<config>
<type>check</type>
<default>1</default>
@ -233,7 +233,7 @@
<showLogicalPageField>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.showLogicalPageField</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.showLogicalPageField</label>
<config>
<type>check</type>
<default>0</default>
@ -244,7 +244,7 @@
<TCEforms>
<onChange>reload</onChange>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.showSingleResult</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.showSingleResult</label>
<config>
<type>check</type>
<default>0</default>
@ -254,7 +254,7 @@
<targetPid>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.targetPid</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.targetPid</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -275,7 +275,7 @@
<TCEforms>
<displayCond>FIELD:showSingleResult:=:1</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.targetPidPageView</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.targetPidPageView</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -289,7 +289,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/search/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Search.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/statistics/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -45,7 +45,7 @@
<TCEforms>
<displayCond>FIELD:pages:REQ:true</displayCond>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/statistics/locallang.xml:tt_content.pi_flexform.collections</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.collections</label>
<config>
<type>select</type>
<items type="array"></items>
@ -60,7 +60,7 @@
<description>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/statistics/locallang.xml:tt_content.pi_flexform.description</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Statistics.xml:tt_content.pi_flexform.description</label>
<config>
<type>text</type>
<cols>30</cols>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/toc/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -43,7 +43,7 @@
<excludeOther>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/toc/locallang.xml:tt_content.pi_flexform.excludeOther</label>
<label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.excludeOther</label>
<config>
<type>check</type>
<default>1</default>
@ -53,7 +53,7 @@
<basketButton>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/toc/locallang.xml:tt_content.pi_flexform.basketButton</label>
<label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.basketButton</label>
<config>
<type>check</type>
<default>0</default>
@ -63,7 +63,7 @@
<targetBasket>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/toc/locallang.xml:tt_content.pi_flexform.targetBasket</label>
<label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.targetBasket</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -83,7 +83,7 @@
<targetPid>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/toc/locallang.xml:tt_content.pi_flexform.targetPid</label>
<label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.targetPid</label>
<config>
<type>group</type>
<internal_type>db</internal_type>
@ -103,7 +103,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/toc/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/TableOfContents.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/toolbox/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -43,7 +43,7 @@
<tools>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/toolbox/locallang.xml:tt_content.pi_flexform.tools</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.tools</label>
<config>
<type>select</type>
<items type="array"></items>
@ -58,7 +58,7 @@
<fileGrpsImageDownload>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/toolbox/locallang.xml:tt_content.pi_flexform.fileGrps</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.fileGrps</label>
<config>
<type>input</type>
<size>30</size>
@ -70,7 +70,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/toolbox/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Toolbox.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -16,7 +16,7 @@
<sDEF>
<ROOT>
<TCEforms>
<sheetTitle>LLL:EXT:dlf/plugins/validator/locallang.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
<sheetTitle>LLL:EXT:dlf/Resources/Private/Language/Validator.xml:tt_content.pi_flexform.sheet_general</sheetTitle>
</TCEforms>
<type>array</type>
<el>
@ -37,7 +37,7 @@
<templateFile>
<TCEforms>
<exclude>1</exclude>
<label>LLL:EXT:dlf/plugins/validator/locallang.xml:tt_content.pi_flexform.templateFile</label>
<label>LLL:EXT:dlf/Resources/Private/Language/Validator.xml:tt_content.pi_flexform.templateFile</label>
<config>
<type>group</type>
<internal_type>file_reference</internal_type>

View File

@ -22,12 +22,12 @@ if (!defined('TYPO3_MODE')) {
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
'dlf',
'plugins/search/',
'Configuration/TypoScript/Search/',
'Search Facets'
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
'dlf',
'plugins/toc/',
'Configuration/TypoScript/TableOfContents/',
'Table of Contents'
);

View File

@ -18,142 +18,141 @@ $GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_audi
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_audioplayer'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_audioplayer', 'dlf_audioplayer'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_audioplayer', 'dlf_audioplayer'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_audioplayer', 'FILE:EXT:'.'dlf/plugins/audioplayer/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_audioplayer', 'FILE:EXT:'.'dlf/Configuration/Flexforms/AudioPlayer.xml');
// Plugin "basket".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_basket'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_basket'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_basket', 'dlf_basket'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_basket', 'dlf_basket'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_basket', 'FILE:EXT:'.'dlf/plugins/basket/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_basket', 'FILE:EXT:'.'dlf/Configuration/Flexforms/Basket.xml');
// Plugin "calendar".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_calendar'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_calendar'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_calendar', 'dlf_calendar'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_calendar', 'FILE:EXT:'.'dlf/Configuration/Flexforms/Calendar.xml');
// Plugin "collection".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_collection'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_collection'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_collection', 'dlf_collection'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_collection', 'dlf_collection'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_collection', 'FILE:EXT:'.'dlf/plugins/collection/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_collection', 'FILE:EXT:'.'dlf/Configuration/Flexforms/Collection.xml');
// Plugin "feeds".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_feeds'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_feeds'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_feeds', 'dlf_feeds'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_feeds', 'dlf_feeds'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_feeds', 'FILE:EXT:'.'dlf/plugins/feeds/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_feeds', 'FILE:EXT:'.'dlf/Configuration/Flexforms/Feeds.xml');
// Plugin "listview".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_listview'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_listview'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_listview', 'dlf_listview'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_listview', 'dlf_listview'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_listview', 'FILE:EXT:'.'dlf/plugins/listview/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_listview', 'FILE:EXT:'.'dlf/Configuration/Flexforms/ListView.xml');
// Plugin "metadata".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_metadata'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_metadata'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_metadata', 'dlf_metadata'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_metadata', 'dlf_metadata'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_metadata', 'FILE:EXT:'.'dlf/plugins/metadata/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_metadata', 'FILE:EXT:'.'dlf/Configuration/Flexforms/Metadata.xml');
// Plugin "navigation".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_navigation'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_navigation'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_navigation', 'dlf_navigation'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_navigation', 'dlf_navigation'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_navigation', 'FILE:EXT:'.'dlf/plugins/navigation/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_navigation', 'FILE:EXT:'.'dlf/Configuration/Flexforms/Navigation.xml');
// Plugin "newspaper".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_newspaper'] = 'layout,select_key,pages,recursive';
// Plugin "oaipmh".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_oaipmh'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_newspaper'] = 'pi_flexform';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_oaipmh'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_newspaper', 'dlf_newspaper'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_oaipmh', 'dlf_oaipmh'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_newspaper', 'FILE:EXT:'.'dlf/plugins/newspaper/flexform.xml');
// Plugin "oai".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_oai'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_oai'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_oai', 'dlf_oai'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_oai', 'FILE:EXT:'.'dlf/plugins/oai/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_oaipmh', 'FILE:EXT:'.'dlf/Configuration/Flexforms/OaiPmh.xml');
// Plugin "pagegrid".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_pagegrid'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_pagegrid'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_pagegrid', 'dlf_pagegrid'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_pagegrid', 'dlf_pagegrid'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_pagegrid', 'FILE:EXT:'.'dlf/plugins/pagegrid/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_pagegrid', 'FILE:EXT:'.'dlf/Configuration/Flexforms/PageGrid.xml');
// Plugin "pageview".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_pageview'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_pageview'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_pageview', 'dlf_pageview'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_pageview', 'dlf_pageview'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_pageview', 'FILE:EXT:'.'dlf/plugins/pageview/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_pageview', 'FILE:EXT:'.'dlf/Configuration/Flexforms/PageView.xml');
// Plugin "search".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_search'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_search'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_search', 'dlf_search'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_search', 'dlf_search'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_search', 'FILE:EXT:'.'dlf/plugins/search/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_search', 'FILE:EXT:'.'dlf/Configuration/Flexforms/Search.xml');
// Plugin "statistics".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_statistics'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_statistics'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_statistics', 'dlf_statistics'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_statistics', 'dlf_statistics'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_statistics', 'FILE:EXT:'.'dlf/plugins/statistics/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_statistics', 'FILE:EXT:'.'dlf/Configuration/Flexforms/Statistics.xml');
// Plugin "table of contents".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_toc'] = 'layout,select_key,pages,recursive';
// Plugin "tableofcontents".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_tableofcontents'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_toc'] = 'pi_flexform';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_tableofcontents'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_toc', 'dlf_toc'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_tableofcontents', 'dlf_tableofcontents'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_toc', 'FILE:EXT:'.'dlf/plugins/toc/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_tableofcontents', 'FILE:EXT:'.'dlf/Configuration/Flexforms/TableOfContents.xml');
// Plugin "toolbox".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_toolbox'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_toolbox'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_toolbox', 'dlf_toolbox'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_toolbox', 'dlf_toolbox'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_toolbox', 'FILE:EXT:'.'dlf/plugins/toolbox/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_toolbox', 'FILE:EXT:'.'dlf/Configuration/Flexforms/Toolbox.xml');
// Plugin "validator".
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['dlf_validator'] = 'layout,select_key,pages,recursive';
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['dlf_validator'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/locallang.xml:tt_content.dlf_validator', 'dlf_validator'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tt_content.dlf_validator', 'dlf_validator'), 'list_type', 'dlf');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_validator', 'FILE:EXT:'.'dlf/plugins/validator/flexform.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_validator', 'FILE:EXT:'.'dlf/Configuration/Flexforms/Validator.xml');

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_actionlog',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_actionlog',
'label' => 'label',
'crdate' => 'crdate',
'cruser_id' => 'user_id',
@ -32,7 +32,7 @@ return array (
),
'columns' => array (
'label' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_actionlog.label',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_actionlog.label',
'config' => array (
'type' => 'input',
'size' => 30,
@ -41,7 +41,7 @@ return array (
),
),
'user_id' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_actionlog.user_id',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_actionlog.user_id',
'config' => array (
'type' => 'input',
'size' => 30,
@ -50,7 +50,7 @@ return array (
),
),
'file_name' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_actionlog.file_name',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_actionlog.file_name',
'config' => array (
'type' => 'input',
'size' => 30,
@ -59,7 +59,7 @@ return array (
),
),
'count_pages' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_actionlog.count_pages',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_actionlog.count_pages',
'config' => array (
'type' => 'input',
'size' => 30,
@ -68,7 +68,7 @@ return array (
),
),
'name' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_actionlog.name',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_actionlog.name',
'config' => array (
'type' => 'input',
'size' => 30,
@ -78,7 +78,7 @@ return array (
)
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_actionlog.tab1, label;;;;1-1-1, name;;;;2-2-2, file_name;;;;2-2-2, crdate;;;;2-2-2, count_pages;;;;2-2-2'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_actionlog.tab1, label;;;;1-1-1, name;;;;2-2-2, file_name;;;;2-2-2, crdate;;;;2-2-2, count_pages;;;;2-2-2'),
),
'palettes' => array (
'1' => array ('showitem' => ''),

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_basket',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_basket',
'label' => 'label',
'tstamp' => 'tstamp',
'fe_user_id' => 'fe_user_id',
@ -33,7 +33,7 @@ return array (
),
'columns' => array (
'label' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_basket.label',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_basket.label',
'config' => array (
'type' => 'input',
'size' => 30,
@ -42,7 +42,7 @@ return array (
),
),
'session_id' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_basket.sessionId',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_basket.sessionId',
'config' => array (
'type' => 'input',
'size' => 30,
@ -51,7 +51,7 @@ return array (
),
),
'doc_ids' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_basket.docIds',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_basket.docIds',
'config' => array (
'type' => 'input',
'size' => 30,
@ -60,7 +60,7 @@ return array (
),
),
'fe_user_id' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_basket.feUser',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_basket.feUser',
'config' => array (
'type' => 'input',
'eval' => 'int,unique',
@ -68,7 +68,7 @@ return array (
),
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_basket.tab1, label;;;;1-1-1, session_id;;;;2-2-2, doc_ids;;;;2-2-2, fe_user_id;;;;2-2-2'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_basket.tab1, label;;;;1-1-1, session_id;;;;2-2-2, doc_ids;;;;2-2-2, fe_user_id;;;;2-2-2'),
),
'palettes' => array (
'1' => array ('showitem' => ''),

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections',
'label' => 'label',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
@ -103,7 +103,7 @@ return array (
),
'label' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.label',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.label',
'config' => array (
'type' => 'input',
'size' => 30,
@ -114,7 +114,7 @@ return array (
'index_name' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.index_name',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.index_name',
'config' => array (
'type' => 'none',
'size' => 30,
@ -125,7 +125,7 @@ return array (
'index_search' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.index_search',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.index_search',
'config' => array (
'type' => 'text',
'cols' => 30,
@ -136,7 +136,7 @@ return array (
'oai_name' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.oai_name',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.oai_name',
'config' => array (
'type' => 'input',
'size' => 30,
@ -147,7 +147,7 @@ return array (
'description' => array (
'exclude' => 1,
'l10n_mode' => 'mergeIfNotBlank',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.description',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.description',
'config' => array (
'type' => 'text',
'cols' => 30,
@ -159,7 +159,7 @@ return array (
'thumbnail' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.thumbnail',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.thumbnail',
'config' => array (
'type' => 'group',
'internal_type' => 'file_reference',
@ -172,7 +172,7 @@ return array (
'priority' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.priority',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.priority',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingle',
@ -192,7 +192,7 @@ return array (
'documents' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.documents',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.documents',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingleBox',
@ -212,12 +212,12 @@ return array (
'owner' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.owner',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.owner',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingle',
'items' => array (
array ('LLL:EXT:dlf/locallang.xml:tx_dlf_collections.owner.none', 0),
array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.owner.none', 0),
),
'foreign_table' => 'tx_dlf_libraries',
'foreign_table_where' => 'AND tx_dlf_libraries.sys_language_uid IN (-1,0) ORDER BY tx_dlf_libraries.label',
@ -229,12 +229,12 @@ return array (
'fe_cruser_id' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.fe_cruser_id',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.fe_cruser_id',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingle',
'items' => array (
array ('LLL:EXT:dlf/locallang.xml:tx_dlf_collections.fe_cruser_id.none', 0),
array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.fe_cruser_id.none', 0),
),
'foreign_table' => 'fe_users',
'foreign_table_where' => 'ORDER BY fe_users.username',
@ -246,7 +246,7 @@ return array (
'fe_admin_lock' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.fe_admin_lock',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.fe_admin_lock',
'config' => array (
'type' => 'check',
'default' => 0,
@ -255,12 +255,12 @@ return array (
'status' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.status',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.status',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingle',
'items' => array (
array ('LLL:EXT:dlf/locallang.xml:tx_dlf_collections.status.default', 0),
array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.status.default', 0),
),
'size' => 1,
'minitems' => 1,
@ -270,7 +270,7 @@ return array (
),
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_collections.tab1, label,--palette--;;1;;1-1-1, description,--palette--;;2;;2-2-2, --div--;LLL:EXT:dlf/locallang.xml:tx_dlf_collections.tab2, sys_language_uid;;;;1-1-1, l18n_parent, l18n_diffsource, --div--;LLL:EXT:dlf/locallang.xml:tx_dlf_collections.tab3, hidden;;;;1-1-1, fe_group;;;;2-2-2, status;;;;3-3-3, owner;;;;4-4-4, fe_cruser_id,--palette--;;3'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.tab1, label,--palette--;;1;;1-1-1, description,--palette--;;2;;2-2-2, --div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.tab2, sys_language_uid;;;;1-1-1, l18n_parent, l18n_diffsource, --div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_collections.tab3, hidden;;;;1-1-1, fe_group;;;;2-2-2, status;;;;3-3-3, owner;;;;4-4-4, fe_cruser_id,--palette--;;3'),
),
'palettes' => array (
'1' => array ('showitem' => 'index_name, --linebreak--, index_search, --linebreak--, oai_name', 'canNotCollapse' => 1),

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents',
'label' => 'title',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
@ -89,7 +89,7 @@ return array (
),
'prod_id' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.prod_id',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.prod_id',
'config' => array (
'type' => 'input',
'size' => 30,
@ -99,7 +99,7 @@ return array (
),
'location' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.location',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.location',
'config' => array (
'type' => 'input',
'size' => 30,
@ -109,7 +109,7 @@ return array (
),
'record_id' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.record_id',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.record_id',
'config' => array (
'type' => 'input',
'size' => 30,
@ -119,7 +119,7 @@ return array (
),
'opac_id' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.opac_id',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.opac_id',
'config' => array (
'type' => 'input',
'size' => 30,
@ -129,7 +129,7 @@ return array (
),
'union_id' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.union_id',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.union_id',
'config' => array (
'type' => 'input',
'size' => 30,
@ -139,7 +139,7 @@ return array (
),
'urn' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.urn',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.urn',
'config' => array (
'type' => 'input',
'size' => 30,
@ -149,7 +149,7 @@ return array (
),
'purl' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.purl',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.purl',
'config' => array (
'type' => 'input',
'size' => 30,
@ -159,7 +159,7 @@ return array (
),
'title' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.title',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.title',
'config' => array (
'type' => 'input',
'size' => 30,
@ -169,7 +169,7 @@ return array (
),
'title_sorting' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.title_sorting',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.title_sorting',
'config' => array (
'type' => 'input',
'size' => 30,
@ -179,7 +179,7 @@ return array (
),
'author' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.author',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.author',
'config' => array (
'type' => 'input',
'size' => 30,
@ -189,7 +189,7 @@ return array (
),
'year' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.year',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.year',
'config' => array (
'type' => 'input',
'size' => 30,
@ -199,7 +199,7 @@ return array (
),
'place' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.place',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.place',
'config' => array (
'type' => 'input',
'size' => 30,
@ -209,7 +209,7 @@ return array (
),
'thumbnail' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.thumbnail',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.thumbnail',
'config' => array (
'type' => 'user',
'userFunc' => 'EXT:dlf/Classes/Hooks/FormEngine.php:FormEngine->displayThumbnail',
@ -227,7 +227,7 @@ return array (
),
'structure' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.structure',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.structure',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingle',
@ -239,7 +239,7 @@ return array (
),
),
'partof' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.partof',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.partof',
'config' => array (
'type' => 'group',
'internal_type' => 'db',
@ -256,7 +256,7 @@ return array (
),
'volume' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.volume',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.volume',
'config' => array (
'type' => 'input',
'size' => 30,
@ -266,7 +266,7 @@ return array (
),
'volume_sorting' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.volume_sorting',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.volume_sorting',
'config' => array (
'type' => 'input',
'size' => 30,
@ -276,7 +276,7 @@ return array (
),
'collections' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.collections',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.collections',
'config' => array (
'type' => 'select',
'renderType' => 'selectMultipleSideBySide',
@ -294,7 +294,7 @@ return array (
),
'owner' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.owner',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.owner',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingle',
@ -312,12 +312,12 @@ return array (
),
'status' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_documents.status',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.status',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingle',
'items' => array (
array ('LLL:EXT:dlf/locallang.xml:tx_dlf_documents.status.default', 0),
array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.status.default', 0),
),
'size' => 1,
'minitems' => 1,
@ -327,7 +327,7 @@ return array (
),
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_documents.tab1, title,--palette--;;1;;1-1-1, author, year, place, structure,--palette--;;2;;2-2-2, collections;;;;3-3-3, --div--;LLL:EXT:dlf/locallang.xml:tx_dlf_documents.tab2, location;;;;1-1-1, record_id, prod_id;;;;2-2-2, oai_id;;;;3-3-3, opac_id, union_id, urn, purl;;;;4-4-4, --div--;LLL:EXT:dlf/locallang.xml:tx_dlf_documents.tab3, hidden,--palette--;;3;;1-1-1, fe_group;;;;2-2-2, status;;;;3-3-3, owner;;;;4-4-4'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.tab1, title,--palette--;;1;;1-1-1, author, year, place, structure,--palette--;;2;;2-2-2, collections;;;;3-3-3, --div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.tab2, location;;;;1-1-1, record_id, prod_id;;;;2-2-2, oai_id;;;;3-3-3, opac_id, union_id, urn, purl;;;;4-4-4, --div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_documents.tab3, hidden,--palette--;;3;;1-1-1, fe_group;;;;2-2-2, status;;;;3-3-3, owner;;;;4-4-4'),
),
'palettes' => array (
'1' => array ('showitem' => 'title_sorting', 'canNotCollapse' => 1),

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_formats',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_formats',
'label' => 'type',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
@ -31,7 +31,7 @@ return array (
),
'columns' => array (
'type' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_formats.type',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_formats.type',
'config' => array (
'type' => 'input',
'size' => 30,
@ -40,7 +40,7 @@ return array (
),
),
'root' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_formats.root',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_formats.root',
'config' => array (
'type' => 'input',
'size' => 30,
@ -49,7 +49,7 @@ return array (
),
),
'namespace' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_formats.namespace',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_formats.namespace',
'config' => array (
'type' => 'input',
'size' => 30,
@ -58,7 +58,7 @@ return array (
),
),
'class' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_formats.class',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_formats.class',
'config' => array (
'type' => 'input',
'size' => 30,
@ -68,7 +68,7 @@ return array (
),
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_formats.tab1, type;;;;1-1-1, root;;;;2-2-2, namespace, class;;;;3-3-3'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_formats.tab1, type;;;;1-1-1, root;;;;2-2-2, namespace, class;;;;3-3-3'),
),
'palettes' => array (
'1' => array ('showitem' => ''),

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries',
'label' => 'label',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
@ -69,7 +69,7 @@ return array (
),
'label' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.label',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.label',
'config' => array (
'type' => 'input',
'size' => 30,
@ -79,7 +79,7 @@ return array (
),
'index_name' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.index_name',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.index_name',
'config' => array (
'type' => 'none',
'size' => 30,
@ -89,7 +89,7 @@ return array (
),
'website' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.website',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.website',
'config' => array (
'type' => 'input',
'size' => 30,
@ -99,7 +99,7 @@ return array (
),
'contact' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.contact',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.contact',
'config' => array (
'type' => 'input',
'size' => 30,
@ -109,7 +109,7 @@ return array (
),
'image' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.image',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.image',
'config' => array (
'type' => 'group',
'internal_type' => 'file',
@ -124,7 +124,7 @@ return array (
),
'oai_label' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.oai_label',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.oai_label',
'config' => array (
'type' => 'input',
'size' => 30,
@ -133,7 +133,7 @@ return array (
),
'oai_base' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.oai_base',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.oai_base',
'config' => array (
'type' => 'group',
'internal_type' => 'db',
@ -145,7 +145,7 @@ return array (
),
'opac_label' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.opac_label',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.opac_label',
'config' => array (
'type' => 'input',
'size' => 30,
@ -154,7 +154,7 @@ return array (
),
'opac_base' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.opac_base',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.opac_base',
'config' => array (
'type' => 'input',
'size' => 30,
@ -164,7 +164,7 @@ return array (
),
'union_label' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.union_label',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.union_label',
'config' => array (
'type' => 'input',
'size' => 30,
@ -173,7 +173,7 @@ return array (
),
'union_base' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.union_base',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.union_base',
'config' => array (
'type' => 'input',
'size' => 30,
@ -183,7 +183,7 @@ return array (
),
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.tab1, label,--palette--;;1;;1-1-1, website;;;;2-2-2, contact, image;;;;3-3-3, --div--;LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.tab2, sys_language_uid;;;;1-1-1, l18n_parent, l18n_diffsource, --div--;LLL:EXT:dlf/locallang.xml:tx_dlf_libraries.tab3, oai_label,--palette--;;2;;1-1-1, opac_label,--palette--;;3;;2-2-2, union_label,--palette--;;4;;3-3-3'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.tab1, label,--palette--;;1;;1-1-1, website;;;;2-2-2, contact, image;;;;3-3-3, --div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.tab2, sys_language_uid;;;;1-1-1, l18n_parent, l18n_diffsource, --div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_libraries.tab3, oai_label,--palette--;;2;;1-1-1, opac_label,--palette--;;3;;2-2-2, union_label,--palette--;;4;;3-3-3'),
),
'palettes' => array (
'1' => array ('showitem' => 'index_name', 'canNotCollapse' => 1),

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_mail',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_mail',
'label' => 'label',
'sortby' => 'sorting',
'delete' => 'deleted',
@ -28,7 +28,7 @@ return array (
),
'columns' => array (
'label' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_mail',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_mail',
'config' => array (
'type' => 'input',
'size' => 30,
@ -37,7 +37,7 @@ return array (
),
),
'name' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_mail.name',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_mail.name',
'config' => array (
'type' => 'input',
'size' => 30,
@ -46,7 +46,7 @@ return array (
),
),
'mail' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_mail.mail',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_mail.mail',
'config' => array (
'type' => 'input',
'size' => 30,
@ -56,7 +56,7 @@ return array (
),
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_mail.tab1, label;;;;1-1-1, name;;;;2-2-2, mail;;;;2-2-2'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_mail.tab1, label;;;;1-1-1, name;;;;2-2-2, mail;;;;2-2-2'),
),
'palettes' => array (
'1' => array ('showitem' => ''),

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata',
'label' => 'label',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
@ -80,7 +80,7 @@ return array (
),
'label' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.label',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.label',
'config' => array (
'type' => 'input',
'size' => 30,
@ -91,7 +91,7 @@ return array (
'index_name' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.index_name',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.index_name',
'config' => array (
'type' => 'input',
'size' => 30,
@ -102,7 +102,7 @@ return array (
'format' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.format',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.format',
'config' => array (
'type' => 'inline',
'foreign_table' => 'tx_dlf_metadataformat',
@ -125,7 +125,7 @@ return array (
),
'default_value' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.default_value',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.default_value',
'config' => array (
'type' => 'input',
'size' => 30,
@ -136,7 +136,7 @@ return array (
'wrap' => array (
'exclude' => 1,
'l10n_mode' => 'mergeIfNotBlank',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.wrap',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.wrap',
'config' => array (
'type' => 'text',
'cols' => 48,
@ -150,7 +150,7 @@ return array (
'index_tokenized' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.index_tokenized',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.index_tokenized',
'config' => array (
'type' => 'check',
'default' => 0,
@ -159,7 +159,7 @@ return array (
'index_stored' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.index_stored',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.index_stored',
'config' => array (
'type' => 'check',
'default' => 0,
@ -168,7 +168,7 @@ return array (
'index_indexed' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.index_indexed',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.index_indexed',
'config' => array (
'type' => 'check',
'default' => 1,
@ -177,7 +177,7 @@ return array (
'index_boost' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.index_boost',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.index_boost',
'config' => array (
'type' => 'input',
'size' => 5,
@ -189,7 +189,7 @@ return array (
'is_sortable' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.is_sortable',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.is_sortable',
'config' => array (
'type' => 'check',
'default' => 0,
@ -198,7 +198,7 @@ return array (
'is_facet' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.is_facet',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.is_facet',
'config' => array (
'type' => 'check',
'default' => 0,
@ -207,7 +207,7 @@ return array (
'is_listed' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.is_listed',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.is_listed',
'config' => array (
'type' => 'check',
'default' => 0,
@ -216,7 +216,7 @@ return array (
'index_autocomplete' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.index_autocomplete',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.index_autocomplete',
'config' => array (
'type' => 'check',
'default' => 0,
@ -225,12 +225,12 @@ return array (
'status' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.status',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.status',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingle',
'items' => array (
array ('LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.status.default', 0),
array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.status.default', 0),
),
'size' => 1,
'minitems' => 1,
@ -240,7 +240,7 @@ return array (
),
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.tab1, label,--palette--;;1;;1-1-1, format;;;;2-2-2, default_value;;;;3-3-3, wrap, --div--;LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.tab2, sys_language_uid;;;;1-1-1, l18n_parent, l18n_diffsource, --div--;LLL:EXT:dlf/locallang.xml:tx_dlf_metadata.tab3, hidden;;;;1-1-1, status;;;;2-2-2'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.tab1, label,--palette--;;1;;1-1-1, format;;;;2-2-2, default_value;;;;3-3-3, wrap, --div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.tab2, sys_language_uid;;;;1-1-1, l18n_parent, l18n_diffsource, --div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadata.tab3, hidden;;;;1-1-1, status;;;;2-2-2'),
),
'palettes' => array (
'1' => array ('showitem' => 'index_name, --linebreak--, index_tokenized, index_stored, index_indexed, index_boost, --linebreak--, is_sortable, is_facet, is_listed, index_autocomplete', 'canNotCollapse' => 1),

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadataformat',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadataformat',
'label' => 'encoded',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
@ -38,7 +38,7 @@ return array (
),
'encoded' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadataformat.encoded',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadataformat.encoded',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingle',
@ -51,7 +51,7 @@ return array (
),
'xpath' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadataformat.xpath',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadataformat.xpath',
'config' => array (
'type' => 'input',
'size' => 30,
@ -61,7 +61,7 @@ return array (
),
'xpath_sorting' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadataformat.xpath_sorting',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadataformat.xpath_sorting',
'config' => array (
'type' => 'input',
'size' => 30,
@ -71,7 +71,7 @@ return array (
),
'mandatory' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_metadataformat.mandatory',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadataformat.mandatory',
'config' => array (
'type' => 'check',
'default' => 0,
@ -79,7 +79,7 @@ return array (
),
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_metadataformat.tab1, encoded;;;;1-1-1, xpath;;;;2-2-2, xpath_sorting, mandatory;;;;3-3-3'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_metadataformat.tab1, encoded;;;;1-1-1, xpath;;;;2-2-2, xpath_sorting, mandatory;;;;3-3-3'),
),
'palettes' => array (
'1' => array ('showitem' => ''),

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_printer',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_printer',
'label' => 'label',
'default_sortby' => 'ORDER BY label',
'delete' => 'deleted',
@ -28,7 +28,7 @@ return array (
),
'columns' => array (
'label' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_printer.label',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_printer.label',
'config' => array (
'type' => 'input',
'size' => 30,
@ -37,7 +37,7 @@ return array (
),
),
'print' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_printer.printcommand',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_printer.printcommand',
'config' => array (
'type' => 'input',
'size' => 30,
@ -47,7 +47,7 @@ return array (
),
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_printer.tab1, label;;;;1-1-1, print;;;;2-2-2'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_printer.tab1, label;;;;1-1-1, print;;;;2-2-2'),
),
'palettes' => array (
'1' => array ('showitem' => ''),

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_solrcores',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_solrcores',
'label' => 'label',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
@ -31,7 +31,7 @@ return array (
),
'columns' => array (
'label' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_solrcores.label',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_solrcores.label',
'config' => array (
'type' => 'input',
'size' => 30,
@ -40,7 +40,7 @@ return array (
),
),
'index_name' => array (
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_solrcores.index_name',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_solrcores.index_name',
'config' => array (
'type' => 'none',
'size' => 30,
@ -50,7 +50,7 @@ return array (
),
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_solrcores.tab1, label;;;;1-1-1, index_name;;;;2-2-2'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_solrcores.tab1, label;;;;1-1-1, index_name;;;;2-2-2'),
),
'palettes' => array (
'1' => array ('showitem' => ''),

View File

@ -11,7 +11,7 @@
return array (
'ctrl' => array (
'title' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_structures',
'title' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures',
'label' => 'label',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
@ -82,7 +82,7 @@ return array (
'toplevel' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_structures.toplevel',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures.toplevel',
'config' => array (
'type' => 'check',
'default' => 0,
@ -90,7 +90,7 @@ return array (
),
'label' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_structures.label',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures.label',
'config' => array (
'type' => 'input',
'size' => 30,
@ -101,7 +101,7 @@ return array (
'index_name' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_structures.index_name',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures.index_name',
'config' => array (
'type' => 'input',
'size' => 30,
@ -112,7 +112,7 @@ return array (
'oai_name' => array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_structures.oai_name',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures.oai_name',
'config' => array (
'type' => 'input',
'size' => 30,
@ -124,12 +124,12 @@ return array (
'exclude' => 1,
'l10n_mode' => 'exclude',
'displayCond' => 'FIELD:toplevel:REQ:true',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_structures.thumbnail',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures.thumbnail',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingle',
'items' => array (
array ('LLL:EXT:dlf/locallang.xml:tx_dlf_structures.thumbnail.self', 0),
array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures.thumbnail.self', 0),
),
'foreign_table' => 'tx_dlf_structures',
'foreign_table_where' => 'AND tx_dlf_structures.pid=###CURRENT_PID### AND tx_dlf_structures.toplevel=0 AND tx_dlf_structures.sys_language_uid IN (-1,0) ORDER BY tx_dlf_structures.label',
@ -141,12 +141,12 @@ return array (
),
'status' => array (
'exclude' => 1,
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_structures.status',
'label' => 'LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures.status',
'config' => array (
'type' => 'select',
'renderType' => 'selectSingle',
'items' => array (
array ('LLL:EXT:dlf/locallang.xml:tx_dlf_structures.status.default', 0),
array ('LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures.status.default', 0),
),
'size' => 1,
'minitems' => 1,
@ -156,7 +156,7 @@ return array (
),
),
'types' => array (
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/locallang.xml:tx_dlf_structures.tab1, toplevel;;;;1-1-1, label,--palette--;;1, thumbnail, --div--;LLL:EXT:dlf/locallang.xml:tx_dlf_structures.tab2, sys_language_uid;;;;1-1-1, l18n_parent, l18n_diffsource, --div--;LLL:EXT:dlf/locallang.xml:tx_dlf_structures.tab3, hidden;;;;1-1-1, status;;;;2-2-2'),
'0' => array ('showitem' => '--div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures.tab1, toplevel;;;;1-1-1, label,--palette--;;1, thumbnail, --div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures.tab2, sys_language_uid;;;;1-1-1, l18n_parent, l18n_diffsource, --div--;LLL:EXT:dlf/Resources/Private/Language/Labels.xml:tx_dlf_structures.tab3, hidden;;;;1-1-1, status;;;;2-2-2'),
),
'palettes' => array (
'1' => array ('showitem' => 'index_name, --linebreak--, oai_name', 'canNotCollapse' => 1),

View File

@ -1,4 +1,4 @@
plugin.tx_dlf_search.facetsConf {
plugin.Search.facetsConf {
expAll = 0
1 = TMENU
1 {

View File

@ -1,4 +1,4 @@
plugin.tx_dlf_toc.menuConf {
plugin.TableOfContents.menuConf {
expAll = 0
1 = TMENU
1 {

View File

@ -1,14 +1,6 @@
page {
includeJSlibs {
jQuery = //code.jquery.com/jquery-2.2.4.min.js
jQuery {
external = 1
disableCompression = 1
# will work as of TYPO3 7.6
integrity = sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=
excludeFromConcatenation = 1
allWrap = |<script type="text/javascript">if (typeof jQuery == 'undefined') { document.write(unescape("%3Cscript src='typo3conf/ext/dlf/Resources/Public/Javascript/jQuery/jquery-2.2.4.min.js' type='text/javascript'%3E%3C/script%3E"));}</script>
}
includeJSLibs {
jQuery = EXT:dlf/Resources/Public/Javascript/jQuery/jquery-2.2.4.min.js
}
includeJSFooterlibs {
jqueryUiMouseSlider = EXT:dlf/Resources/Public/Javascript/jQueryUI/jquery-ui-mouse-slider-resizable-autocomplete.js

View File

@ -54,9 +54,9 @@ capable, i.e. any number of instances of Kitodo.Presentation can be run within
a single TYPO3 installation, each with its own configuration, search index,
database, access permissions, visual design, etc.
Kitodo.Presentation offers a standard OAI 2-compliant interface for
Kitodo.Presentation offers a standard OAI-PMH 2-compliant interface for
international search capability and digital metadata legibility. We recommend
registering your Kitodo installation with the appropriate public OAI register.
registering your Kitodo installation with the appropriate public OAI registry.
Software Components
-------------------
@ -67,7 +67,7 @@ Commons
^^^^^^^
is a group of classes that build upon the TYPO3 API, adding
Kitodo-specific functions, such as handling METS structures and library metadata
in various formats, or linking external resources, such as OAI interfaces or
in various formats, or linking external resources, such as OAI-PMH interfaces or
Solr search engines. The API extensions are available to all TYPO3 extensions,
which means that they can not only be used by Kitodo.Presentation, but by other
extensions as well. Thus, commercial or other very specific functions, which

View File

@ -41,7 +41,7 @@ Properties
.. container:: ts-properties-tx-dlf-audioplayer
:typoscript:`plugin.tx_dlf_audioplayer.`
:typoscript:`plugin.AudioPlayer.`
=========================== ===================================== ====================
Property Data type Default
@ -49,7 +49,7 @@ Properties
pages_ :ref:`t3tsref:data-type-page-id`
excludeOther_ :ref:`t3tsref:data-type-boolean` 1
elementId_ :ref:`t3tsref:data-type-string` tx-dlf-audio
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
templateFile_ :ref:`t3tsref:data-type-resource` AudioPlayer.tmpl
=========================== ===================================== ====================
excludeOther
@ -65,7 +65,7 @@ Basket
.. container:: ts-properties-tx-dlf-basket
:typoscript:`plugin.tx_dlf_basket.`
:typoscript:`plugin.Basket.`
=========================== ===================================== ====================
Property Data type Default
@ -79,9 +79,22 @@ Basket
pdfparamseparator :ref:`t3tsref:data-type-string` `*`
basketGoToButton :ref:`t3tsref:data-type-boolean` 0
targetBasket :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
templateFile_ :ref:`t3tsref:data-type-resource` Basket.tmpl
=========================== ===================================== ====================
Calendar
---------
.. container:: ts-properties-tx-dlf-calendar
:typoscript:`plugin.Calendar.`
=========================== ===================================== ====================
Property Data type Default
=========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` Calendar.tmpl
=========================== ===================================== ====================
Collection
----------
@ -90,7 +103,7 @@ The collection plugin shows one collection, all collections or selected collecti
.. container:: ts-properties-tx-dlf-collection
:typoscript:`plugin.tx_dlf_collection.`
:typoscript:`plugin.Collection.`
=========================== ===================================== ====================
Property Data type Default
@ -102,7 +115,7 @@ The collection plugin shows one collection, all collections or selected collecti
randomize :ref:`t3tsref:data-type-boolean` 0
targetPid :ref:`t3tsref:data-type-page-id`
targetFeed :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
templateFile_ :ref:`t3tsref:data-type-resource` Collection.tmpl
=========================== ===================================== ====================
@ -127,12 +140,12 @@ Feeds
description :ref:`t3tsref:data-type-string`
=========================== ===================================== ====================
Listview
--------
List View
---------
.. container:: ts-properties-tx-dlf-listview
:typoscript:`plugin.tx_dlf_listview.`
:typoscript:`plugin.ListView.`
=========================== ===================================== ====================
Property Data type Default
@ -143,7 +156,7 @@ Listview
getTitle :ref:`t3tsref:data-type-boolean` 0
basketButton :ref:`t3tsref:data-type-boolean` 0
targetBasket :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
templateFile_ :ref:`t3tsref:data-type-resource` ListView.tmpl
=========================== ===================================== ====================
Metadata
@ -151,7 +164,7 @@ Metadata
.. container:: ts-properties-tx-dlf-metadata
:typoscript:`plugin.tx_dlf_metadata.`
:typoscript:`plugin.Metadata.`
=========================== ===================================== ====================
Property Data type Default
@ -164,7 +177,7 @@ Metadata
showFull :ref:`t3tsref:data-type-boolean` 1
rootline :ref:`t3tsref:data-type-integer` 0
separator :ref:`t3tsref:data-type-string` #
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
templateFile_ :ref:`t3tsref:data-type-resource` Metadata.tmpl
=========================== ===================================== ====================
Navigation
@ -172,7 +185,7 @@ Navigation
.. container:: ts-properties-tx-dlf-navigation
:typoscript:`plugin.tx_dlf_navigation.`
:typoscript:`plugin.Navigation.`
=========================== ===================================== ====================
Property Data type Default
@ -180,29 +193,15 @@ Navigation
pages_ :ref:`t3tsref:data-type-page-id`
pageStep :ref:`t3tsref:data-type-integer` 5
targetPid :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
templateFile_ :ref:`t3tsref:data-type-resource` Navigation.tmpl
=========================== ===================================== ====================
Newspaper
---------
OAI-PMH
-------
.. container:: ts-properties-tx-dlf-newspaper
.. container:: ts-properties-tx-dlf-oaipmh
:typoscript:`plugin.tx_dlf_newspaper.`
=========================== ===================================== ====================
Property Data type Default
=========================== ===================================== ====================
pages_ :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
=========================== ===================================== ====================
OAI
---
.. container:: ts-properties-tx-dlf-oai
:typoscript:`plugin.tx_dlf_oai.`
:typoscript:`plugin.OaiPmh.`
=========================== ===================================== ====================
Property Data type Default
@ -216,12 +215,12 @@ OAI
unqualified_epicur :ref:`t3tsref:data-type-boolean` 0
=========================== ===================================== ====================
Pagegrid
--------
Page Grid
---------
.. container:: ts-properties-tx-dlf-pagegrid
:typoscript:`plugin.tx_dlf_pagegrid.`
:typoscript:`plugin.PageGrid.`
=========================== ===================================== ====================
Property Data type Default
@ -230,15 +229,15 @@ Pagegrid
limit :ref:`t3tsref:data-type-integer` 24
placeholder :ref:`t3tsref:data-type-resource`
targetPid :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
templateFile_ :ref:`t3tsref:data-type-resource` PageGrid.tmpl
=========================== ===================================== ====================
Pageview
--------
Page View
---------
.. container:: ts-properties-tx-dlf-pageview
:typoscript:`plugin.tx_dlf_pageview.`
:typoscript:`plugin.PageView.`
=========================== ===================================== ====================
Property Data type Default
@ -252,7 +251,7 @@ Pageview
magnifier :ref:`t3tsref:data-type-boolean` 0
basketButton :ref:`t3tsref:data-type-boolean` 0
targetBasket :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
templateFile_ :ref:`t3tsref:data-type-resource` PageView.tmpl
=========================== ===================================== ====================
Search
@ -260,7 +259,7 @@ Search
.. container:: ts-properties-tx-dlf-search
:typoscript:`plugin.tx_dlf_search.`
:typoscript:`plugin.Search.`
=========================== ===================================== ====================
Property Data type Default
@ -281,7 +280,7 @@ Search
showSingleResult :ref:`t3tsref:data-type-boolean` 0
targetPid :ref:`t3tsref:data-type-page-id`
targetPidPageView :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
templateFile_ :ref:`t3tsref:data-type-resource` Search.tmpl
=========================== ===================================== ====================
Statistics
@ -289,7 +288,7 @@ Statistics
.. container:: ts-properties-tx-dlf-statistics
:typoscript:`plugin.tx_dlf_statistics.`
:typoscript:`plugin.Statistics.`
=========================== ===================================== ====================
Property Data type Default
@ -299,12 +298,12 @@ Statistics
description :ref:`t3tsref:data-type-string`
=========================== ===================================== ====================
TOC
---
Table Of Contents
-----------------
.. container:: ts-properties-tx-dlf-toc
.. container:: ts-properties-tx-dlf-tableofcontents
:typoscript:`plugin.tx_dlf_toc.`
:typoscript:`plugin.TableOfContents.`
=========================== ===================================== ====================
Property Data type Default
@ -314,7 +313,7 @@ TOC
basketButton :ref:`t3tsref:data-type-boolean` 0
targetBasket :ref:`t3tsref:data-type-page-id`
targetPid :ref:`t3tsref:data-type-page-id`
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
templateFile_ :ref:`t3tsref:data-type-resource` TableOfContents.tmpl
=========================== ===================================== ====================
Toolbox
@ -322,7 +321,7 @@ Toolbox
.. container:: ts-properties-tx-dlf-toolbox
:typoscript:`plugin.tx_dlf_toolbox.`
:typoscript:`plugin.Toolbox.`
=========================== ===================================== ====================
Property Data type Default
@ -330,5 +329,5 @@ Toolbox
pages_ :ref:`t3tsref:data-type-page-id`
tools :ref:`t3tsref:data-type-list`
fileGrpsImageDownload :ref:`t3tsref:data-type-list` MIN,DEFAULT,MAX
templateFile_ :ref:`t3tsref:data-type-resource` template.tmpl
templateFile_ :ref:`t3tsref:data-type-resource` Toolbox.tmpl
=========================== ===================================== ====================

View File

@ -1,11 +0,0 @@
# Apache < 2.3
<IfModule !mod_authz_core.c>
Order allow,deny
Deny from all
Satisfy All
</IfModule>
# Apache ≥ 2.3
<IfModule mod_authz_core.c>
Require all denied
</IfModule>

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_audioplayer</description>
<description>Language labels for plugin AudioPlayer</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_basket</description>
<description>Language labels for plugin Basket</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_newspaper</description>
<description>Language labels for plugin Calendar</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_collection</description>
<description>Language labels for plugin Collection</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_feeds</description>
<description>Language labels for plugin Feeds</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Common language labels for extension 'dlf'</description>
<description>Flash messages for extension 'dlf'</description>
</meta>
<data type="array">
<languageKey index="default" type="array">
@ -66,6 +66,53 @@
<label index="flash.solrException">Apache Solr exception thrown:</label>
<label index="flash.solrNoConnection">Could not connect to Apache Solr server.</label>
<label index="flash.seeLog">See administration log for more details.</label>
<label index="update.metadataConfig">Updating metadata configuration...</label>
<label index="update.metadataConfigOkay">...successfully completed!</label>
<label index="update.metadataConfigNotOkay">...incomplete! Please check your configuration manually.</label>
<label index="update.copyIndexRelatedColumns">Copy index related columns...</label>
<label index="update.copyIndexRelatedColumnsOkay">...successfully completed!</label>
<label index="update.copyIndexRelatedColumnsNotOkay">...incomplete! The index related columns (tokenized, stored, indexed, boost, autocomplete) of table tx_dlf_metadata have to be copied manually.</label>
<label index="update.solariumSolrUpdate">Re-adding cores to Solr...</label>
<label index="update.solariumSolrUpdateOkay">...successfully completed! Please re-index your documents now.</label>
<label index="update.solariumSolrUpdateNotOkay">...failed for core %s! Please check your Solr configuration.</label>
<label index="update.FormatClasses">Switching format classes to namespaces...</label>
<label index="update.FormatClassesOkay">...successfully completed! Please check all format records in the page tree's root.</label>
<label index="solr.connected">Connection established!</label>
<label index="solr.status">The status code returned by Apache Solr is &lt;strong&gt;%s&lt;/strong&gt;.</label>
<label index="solr.notConnected">Connection failed!</label>
<label index="solr.error">Apache Solr was not reachable under &lt;strong&gt;%s&lt;/strong&gt;.</label>
<label index="metadataFormats.nsOkay">Default namespaces found!</label>
<label index="metadataFormats.nsOkayMsg">The namespace definitions for MODS, TEIHDR and ALTO do exist.</label>
<label index="metadataFormats.nsCreated">Default namespaces created successfully!</label>
<label index="metadataFormats.nsCreatedMsg">The namespace definitions for MODS, TEIHDR and/or ALTO were created properly.</label>
<label index="metadataFormats.nsNotCreated">Default namespaces not found!</label>
<label index="metadataFormats.nsNotCreatedMsg">The namespace definitions for MODS, TEIHDR and/or ALTO do not exist and could not be created.</label>
<label index="cliUserGroup.usrRealName">Kitodo.Presentation command line indexer</label>
<label index="cliUserGroup.usrOkay">User "_cli_dlf" found!</label>
<label index="cliUserGroup.usrOkayMsg">The backend user for the command line indexer exists and is configured properly.</label>
<label index="cliUserGroup.usrConfigured">User "_cli_dlf" configured successfully!</label>
<label index="cliUserGroup.usrConfiguredMsg">The backend user for the command line indexer was configured properly.</label>
<label index="cliUserGroup.usrNotConfigured">User "_cli_dlf" not configured!</label>
<label index="cliUserGroup.usrNotConfiguredMsg">The backend user for the command line indexer exists, but is not configured properly.</label>
<label index="cliUserGroup.usrCreated">User "_cli_dlf" created successfully!</label>
<label index="cliUserGroup.usrCreatedMsg">The backend user for the command line indexer was created and configured properly.</label>
<label index="cliUserGroup.usrNotCreated">User "_cli_dlf" not found!</label>
<label index="cliUserGroup.usrNotCreatedMsg">The backend user for the command line indexer does not exist.</label>
<label index="cliUserGroup.grpDescription">Usergroup for the Kitodo.Presentation command line indexer.</label>
<label index="cliUserGroup.grpOkay">Usergroup "_cli_dlf" found!</label>
<label index="cliUserGroup.grpOkayMsg">The backend usergroup for the command line indexer exists and is configured properly.</label>
<label index="cliUserGroup.grpConfigured">Usergroup "_cli_dlf" configured successfully!</label>
<label index="cliUserGroup.grpConfiguredMsg">The backend usergroup for the command line indexer was configured properly.</label>
<label index="cliUserGroup.grpNotConfigured">Usergroup "_cli_dlf" not configured!</label>
<label index="cliUserGroup.grpNotConfiguredMsg">The backend usergroup for the command line indexer exists, but is not configured properly.</label>
<label index="cliUserGroup.grpCreated">Usergroup "_cli_dlf" created successfully!</label>
<label index="cliUserGroup.grpCreatedMsg">The backend usergroup for the command line indexer was created and configured properly.</label>
<label index="cliUserGroup.grpNotCreated">Usergroup "_cli_dlf" not found!</label>
<label index="cliUserGroup.grpNotCreatedMsg">The backend usergroup for the command line indexer does not exist.</label>
<label index="cliUserGroup.cliOkay">Command Line Interface available!</label>
<label index="cliUserGroup.cliOkayMsg">The TYPO3 command line interface is available for the indexer to use.</label>
<label index="cliUserGroup.cliNotOkay">Command Line Interface not available!</label>
<label index="cliUserGroup.cliNotOkayMsg">The TYPO3 command line interface is not available for the indexer to use.</label>
</languageKey>
<languageKey index="de" type="array">
<label index="flash.attention">Achtung!</label>
@ -119,6 +166,53 @@
<label index="flash.solrException">Apache Solr meldet Ausnahmefehler:</label>
<label index="flash.solrNoConnection">Verbindung zu Apache Solr Server konnte nicht hergestellt werden.</label>
<label index="flash.seeLog">Alle Details des Indexierungslaufs stehen im Administrationsprotokoll.</label>
<label index="update.metadataConfig">Aktualisierung der Metadatenkonfiguration...</label>
<label index="update.metadataConfigOkay">...erfolgreich beendet! Alle Datensätze wurden ins IRRE-Schema konvertiert.</label>
<label index="update.metadataConfigNotOkay">...abgebrochen! Die Überführung der Datensätze ins IRRE-Schema muss manuell erfolgen.</label>
<label index="update.copyIndexRelatedColumns">Kopieren der Index bezogenen Tabellenspalten...</label>
<label index="update.copyIndexRelatedColumnsOkay">...erfolgreich beendet! Tabellen wurden erfolgreich kopiert.</label>
<label index="update.copyIndexRelatedColumnsNotOkay">...abgebrochen! Das Kopieren der Index bezogenen Tabellenspalten (tokenized, stored, indexed, boost, autocomplete) der Tabelle tx_dlf_metadata muss manuell erfolgen.</label>
<label index="update.solariumSolrUpdate">Hinzufügen der Solr Kerne...</label>
<label index="update.solariumSolrUpdateOkay">...erfolgreich beendet! Bitte re-indexieren Sie jetzt alle Dokumente.</label>
<label index="update.solariumSolrUpdateNotOkay">...für Kern %s fehlgeschlagen! Bitte überprüfen Sie die Solr-Konfiguration.</label>
<label index="update.FormatClasses">Format-Klassen auf Namensräume umstellen...</label>
<label index="update.FormatClassesOkay">...erfolgreich beendet! Bitte prüfen Sie dennoch alle Formateinträge im Wurzelknoten des Seitenbaums.</label>
<label index="solr.connected">Verbindung hergestellt!</label>
<label index="solr.status">Apache Solr gibt den Statuscode &lt;strong&gt;%s&lt;/strong&gt; zurück.</label>
<label index="solr.notConnected">Verbindung fehlgeschlagen!</label>
<label index="solr.error">Apache Solr ist unter &lt;strong&gt;%s&lt;/strong&gt; nicht erreichbar.</label>
<label index="metadataFormats.nsOkay">Standard-Namensräume gefunden!</label>
<label index="metadataFormats.nsOkayMsg">Die Standard-Namensräume für MODS, TEIHDR und ALTO sind definiert.</label>
<label index="metadataFormats.nsCreated">Standard-Namensräume erfolgreich angelegt!</label>
<label index="metadataFormats.nsCreatedMsg">Die Standard-Namensräume für MODS, TEIHDR und/oder ALTO wurden erfolgreich definiert.</label>
<label index="metadataFormats.nsNotCreated">Standard-Namensräume nicht gefunden!</label>
<label index="metadataFormats.nsNotCreatedMsg">Die Standard-Namensräume für MODS, TEIHDR und/oder ALTO konnten nicht definiert werden.</label>
<label index="cliUserGroup.usrRealName">Kitodo.Presentation Kommandozeilen-Indexierungsdienst</label>
<label index="cliUserGroup.usrOkay">Nutzer "_cli_dlf" gefunden!</label>
<label index="cliUserGroup.usrOkayMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst ist korrekt konfiguriert und aktiviert.</label>
<label index="cliUserGroup.usrConfigured">Nutzer "_cli_dlf" erfolgreich konfiguriert!</label>
<label index="cliUserGroup.usrConfiguredMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst wurde erfolgreich konfiguriert.</label>
<label index="cliUserGroup.usrNotConfigured">Nutzer "_cli_dlf" nicht konfiguriert!</label>
<label index="cliUserGroup.usrNotConfiguredMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst existiert, ist aber nicht korrekt konfiguriert.</label>
<label index="cliUserGroup.usrCreated">Nutzer "_cli_dlf" erfolgreich angelegt!</label>
<label index="cliUserGroup.usrCreatedMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst wurde erfolgreich angelegt und konfiguriert.</label>
<label index="cliUserGroup.usrNotCreated">Nutzer "_cli_dlf" nicht gefunden!</label>
<label index="cliUserGroup.usrNotCreatedMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst existiert nicht.</label>
<label index="cliUserGroup.grpDescription">Nutzergruppe für den Kitodo.Presentation Kommandozeilen-Indexierungsdienst.</label>
<label index="cliUserGroup.grpOkay">Nutzergruppe "_cli_dlf" gefunden!</label>
<label index="cliUserGroup.grpOkayMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst ist korrekt konfiguriert und aktiviert.</label>
<label index="cliUserGroup.grpConfigured">Nutzergruppe "_cli_dlf" erfolgreich konfiguriert!</label>
<label index="cliUserGroup.grpConfiguredMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst wurde erfolgreich konfiguriert.</label>
<label index="cliUserGroup.grpNotConfigured">Nutzergruppe "_cli_dlf" nicht konfiguriert!</label>
<label index="cliUserGroup.grpNotConfiguredMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst existiert, ist aber nicht korrekt konfiguriert.</label>
<label index="cliUserGroup.grpCreated">Nutzergruppe "_cli_dlf" erfolgreich angelegt!</label>
<label index="cliUserGroup.grpCreatedMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst wurde erfolgreich angelegt und konfiguriert.</label>
<label index="cliUserGroup.grpNotCreated">Nutzergruppe "_cli_dlf" nicht gefunden!</label>
<label index="cliUserGroup.grpNotCreatedMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst existiert nicht.</label>
<label index="cliUserGroup.cliOkay">Kommandozeilen-Schnittstelle verfügbar!</label>
<label index="cliUserGroup.cliOkayMsg">Die TYPO3-Kommandozeilenschnittstelle steht für den Indexierungsdienst zur Verfügung.</label>
<label index="cliUserGroup.cliNotOkay">Kommandozeilen-Schnittstelle nicht verfügbar!</label>
<label index="cliUserGroup.cliNotOkayMsg">Die TYPO3-Kommandozeilenschnittstelle steht für den Indexierungsdienst nicht zur Verfügung.</label>
</languageKey>
</data>
</T3locallang>

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for tool tx_dlf_toolsFulltext</description>
<description>Language labels for tool Fulltext</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for tool tx_dlf_toolsImagedownload</description>
<description>Language labels for tool ImageDownload</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for tool tx_dlf_toolsImagemanipulation</description>
<description>Language labels for tool ImageManipulation</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -56,7 +56,7 @@
<label index="tx_dlf_structures.toplevel">Toplevel Unit?</label>
<label index="tx_dlf_structures.label">Display Label</label>
<label index="tx_dlf_structures.index_name">Index Name</label>
<label index="tx_dlf_structures.oai_name">OAI Mapping</label>
<label index="tx_dlf_structures.oai_name">OAI-PMH Mapping</label>
<label index="tx_dlf_structures.thumbnail">Get thumbnail from...</label>
<label index="tx_dlf_structures.thumbnail.self">self</label>
<label index="tx_dlf_structures.status">Status</label>
@ -103,7 +103,7 @@
<label index="tx_dlf_collections.label">Display Label</label>
<label index="tx_dlf_collections.index_name">Index Name</label>
<label index="tx_dlf_collections.index_search">Define (virtual) collection via Solr Query</label>
<label index="tx_dlf_collections.oai_name">OAI Mapping</label>
<label index="tx_dlf_collections.oai_name">OAI-PMH Mapping</label>
<label index="tx_dlf_collections.description">Description</label>
<label index="tx_dlf_collections.thumbnail">Thumbnail</label>
<label index="tx_dlf_collections.priority">Priority</label>
@ -141,24 +141,24 @@
<label index="tx_dlf_mail">Email</label>
<label index="tx_dlf_mail.mail">Address</label>
<label index="tx_dlf_mail.name">Name</label>
<label index="tx_dlf_toolbox.toolsPdf">PDF Download</label>
<label index="tx_dlf_toolbox.toolsPdfDownload">PDF Download</label>
<label index="tx_dlf_toolbox.toolsFulltext">Fulltext</label>
<label index="tx_dlf_toolbox.toolsImagemanipulation">Image Manipulation</label>
<label index="tx_dlf_toolbox.toolsImagedownload">Image Download</label>
<label index="tx_dlf_toolbox.toolsImageManipulation">Image Manipulation</label>
<label index="tx_dlf_toolbox.toolsImageDownload">Image Download</label>
<label index="tt_content.dlf_audioplayer">DLF: Audio Player</label>
<label index="tt_content.dlf_basket">DLF: Basket</label>
<label index="tt_content.dlf_calendar">DLF: Calendar</label>
<label index="tt_content.dlf_collection">DLF: Collection</label>
<label index="tt_content.dlf_feeds">DLF: Feeds</label>
<label index="tt_content.dlf_listview">DLF: List View</label>
<label index="tt_content.dlf_metadata">DLF: Metadata</label>
<label index="tt_content.dlf_navigation">DLF: Navigation</label>
<label index="tt_content.dlf_newspaper">DLF: Newspaper</label>
<label index="tt_content.dlf_oai">DLF: OAI-PMH Interface</label>
<label index="tt_content.dlf_oaipmh">DLF: OAI-PMH Interface</label>
<label index="tt_content.dlf_pagegrid">DLF: Page Preview</label>
<label index="tt_content.dlf_pageview">DLF: Page View</label>
<label index="tt_content.dlf_search">DLF: Search</label>
<label index="tt_content.dlf_statistics">DLF: Statistics</label>
<label index="tt_content.dlf_toc">DLF: Table of Contents</label>
<label index="tt_content.dlf_tableofcontents">DLF: Table of Contents</label>
<label index="tt_content.dlf_toolbox">DLF: Toolbox</label>
<label index="tt_content.dlf_validator">DLF: Validator</label>
<label index="config.metadataFormats">Default metadata namespaces</label>
@ -166,7 +166,7 @@
<label index="config.makeCliUserGroup">Create and configure CLI user/group automatically?: (default is "FALSE")</label>
<label index="config.useragent">DLF User-Agent: (default is "Kitodo.Presentation")</label>
<label index="config.caching">Cache parsed METS files: caching improves performance a little bit but can result in a very large "fe_session_data" table (default is "FALSE")</label>
<label index="config.publishNewCollections">Publish new collections?: Should new collections automatically be published in the OAI interface? (default is "TRUE")</label>
<label index="config.publishNewCollections">Publish new collections?: Should new collections automatically be published in the OAI-PMH interface? (default is "TRUE")</label>
<label index="config.unhideOnIndex">Unhide indexed documents?: Should hidden documents be unhidden when re-indexing them? (default is "FALSE")</label>
<label index="config.fileGrps">Page fileGrps: comma-separated list of @USE attribute values ordered by increasing size (default is "MIN,DEFAULT,MAX")</label>
<label index="config.fileGrpThumbs">Thumbnail fileGrp: @USE attribute value (default is "THUMBS")</label>
@ -181,53 +181,6 @@
<label index="config.solrUser">Solr Server User: (default is "")</label>
<label index="config.solrPass">Solr Server Password: (default is "")</label>
<label index="config.solrTimeout">Solr Server Timeout: (default is "10")</label>
<label index="solr.connected">Connection established!</label>
<label index="solr.status">The status code returned by Apache Solr is &lt;strong&gt;%s&lt;/strong&gt;.</label>
<label index="solr.notConnected">Connection failed!</label>
<label index="solr.error">Apache Solr was not reachable under &lt;strong&gt;%s&lt;/strong&gt;.</label>
<label index="metadataFormats.nsOkay">Default namespaces found!</label>
<label index="metadataFormats.nsOkayMsg">The namespace definitions for MODS, TEIHDR and ALTO do exist.</label>
<label index="metadataFormats.nsCreated">Default namespaces created successfully!</label>
<label index="metadataFormats.nsCreatedMsg">The namespace definitions for MODS, TEIHDR and/or ALTO were created properly.</label>
<label index="metadataFormats.nsNotCreated">Default namespaces not found!</label>
<label index="metadataFormats.nsNotCreatedMsg">The namespace definitions for MODS, TEIHDR and/or ALTO do not exist and could not be created.</label>
<label index="cliUserGroup.usrRealName">Kitodo.Presentation command line indexer</label>
<label index="cliUserGroup.usrOkay">User "_cli_dlf" found!</label>
<label index="cliUserGroup.usrOkayMsg">The backend user for the command line indexer exists and is configured properly.</label>
<label index="cliUserGroup.usrConfigured">User "_cli_dlf" configured successfully!</label>
<label index="cliUserGroup.usrConfiguredMsg">The backend user for the command line indexer was configured properly.</label>
<label index="cliUserGroup.usrNotConfigured">User "_cli_dlf" not configured!</label>
<label index="cliUserGroup.usrNotConfiguredMsg">The backend user for the command line indexer exists, but is not configured properly.</label>
<label index="cliUserGroup.usrCreated">User "_cli_dlf" created successfully!</label>
<label index="cliUserGroup.usrCreatedMsg">The backend user for the command line indexer was created and configured properly.</label>
<label index="cliUserGroup.usrNotCreated">User "_cli_dlf" not found!</label>
<label index="cliUserGroup.usrNotCreatedMsg">The backend user for the command line indexer does not exist.</label>
<label index="cliUserGroup.grpDescription">Usergroup for the Kitodo.Presentation command line indexer.</label>
<label index="cliUserGroup.grpOkay">Usergroup "_cli_dlf" found!</label>
<label index="cliUserGroup.grpOkayMsg">The backend usergroup for the command line indexer exists and is configured properly.</label>
<label index="cliUserGroup.grpConfigured">Usergroup "_cli_dlf" configured successfully!</label>
<label index="cliUserGroup.grpConfiguredMsg">The backend usergroup for the command line indexer was configured properly.</label>
<label index="cliUserGroup.grpNotConfigured">Usergroup "_cli_dlf" not configured!</label>
<label index="cliUserGroup.grpNotConfiguredMsg">The backend usergroup for the command line indexer exists, but is not configured properly.</label>
<label index="cliUserGroup.grpCreated">Usergroup "_cli_dlf" created successfully!</label>
<label index="cliUserGroup.grpCreatedMsg">The backend usergroup for the command line indexer was created and configured properly.</label>
<label index="cliUserGroup.grpNotCreated">Usergroup "_cli_dlf" not found!</label>
<label index="cliUserGroup.grpNotCreatedMsg">The backend usergroup for the command line indexer does not exist.</label>
<label index="cliUserGroup.cliOkay">Command Line Interface available!</label>
<label index="cliUserGroup.cliOkayMsg">The TYPO3 command line interface is available for the indexer to use.</label>
<label index="cliUserGroup.cliNotOkay">Command Line Interface not available!</label>
<label index="cliUserGroup.cliNotOkayMsg">The TYPO3 command line interface is not available for the indexer to use.</label>
<label index="update.metadataConfig">Updating metadata configuration...</label>
<label index="update.metadataConfigOkay">...successfully completed!</label>
<label index="update.metadataConfigNotOkay">...incomplete! Please check your configuration manually.</label>
<label index="update.copyIndexRelatedColumns">Copy index related columns...</label>
<label index="update.copyIndexRelatedColumnsOkay">...successfully completed!</label>
<label index="update.copyIndexRelatedColumnsNotOkay">...incomplete! The index related columns (tokenized, stored, indexed, boost, autocomplete) of table tx_dlf_metadata have to be copied manually.</label>
<label index="update.solariumSolrUpdate">Re-adding cores to Solr...</label>
<label index="update.solariumSolrUpdateOkay">...successfully completed! Please re-index your documents now.</label>
<label index="update.solariumSolrUpdateNotOkay">...failed for core %s! Please check your Solr configuration.</label>
<label index="update.FormatClasses">Switching format classes to namespaces...</label>
<label index="update.FormatClassesOkay">...successfully completed! Please check all format records in the page tree's root.</label>
</languageKey>
<languageKey index="de" type="array">
<label index="tx_dlf_actionlog">Aktionsprotokoll</label>
@ -271,7 +224,7 @@
<label index="tx_dlf_structures.toplevel">Toplevel-Element?</label>
<label index="tx_dlf_structures.label">Anzeigeform</label>
<label index="tx_dlf_structures.index_name">Index-Bezeichnung</label>
<label index="tx_dlf_structures.oai_name">OAI-Mapping</label>
<label index="tx_dlf_structures.oai_name">OAI-PMH-Mapping</label>
<label index="tx_dlf_structures.thumbnail">Zeige Vorschaubild von...</label>
<label index="tx_dlf_structures.thumbnail.self">selbst</label>
<label index="tx_dlf_structures.status">Status</label>
@ -317,7 +270,7 @@
<label index="tx_dlf_collections">Sammlungen</label>
<label index="tx_dlf_collections.label">Anzeigeform</label>
<label index="tx_dlf_collections.index_name">Index-Bezeichnung</label>
<label index="tx_dlf_collections.oai_name">OAI-Mapping</label>
<label index="tx_dlf_collections.oai_name">OAI-PMH-Mapping</label>
<label index="tx_dlf_collections.index_search">(Virtuelle) Kollektion über Solr Anfrage definieren</label>
<label index="tx_dlf_collections.description">Beschreibung</label>
<label index="tx_dlf_collections.thumbnail">Vorschaubild</label>
@ -356,24 +309,24 @@
<label index="tx_dlf_mail">E-Mail</label>
<label index="tx_dlf_mail.mail">Adresse</label>
<label index="tx_dlf_mail.name">Name</label>
<label index="tx_dlf_toolbox.toolsPdf">PDF-Download</label>
<label index="tx_dlf_toolbox.toolsPdfDownload">PDF-Download</label>
<label index="tx_dlf_toolbox.toolsFulltext">Volltext</label>
<label index="tx_dlf_toolbox.toolsImagemanipulation">Bildbearbeitung</label>
<label index="tx_dlf_toolbox.toolsImagedownload">Bild-Download</label>
<label index="tx_dlf_toolbox.toolsImageManipulation">Bildbearbeitung</label>
<label index="tx_dlf_toolbox.toolsImageDownload">Bild-Download</label>
<label index="tt_content.dlf_audioplayer">DLF: Audioplayer</label>
<label index="tt_content.dlf_basket">DLF: Warenkorb</label>
<label index="tt_content.dlf_calendar">DLF: Kalender</label>
<label index="tt_content.dlf_collection">DLF: Kollektion</label>
<label index="tt_content.dlf_feeds">DLF: Feeds</label>
<label index="tt_content.dlf_listview">DLF: Listenansicht</label>
<label index="tt_content.dlf_metadata">DLF: Metadaten</label>
<label index="tt_content.dlf_navigation">DLF: Navigation</label>
<label index="tt_content.dlf_newspaper">DLF: Zeitungskalendar</label>
<label index="tt_content.dlf_oai">DLF: OAI-PMH-Schnittstelle</label>
<label index="tt_content.dlf_oaipmh">DLF: OAI-PMH-Schnittstelle</label>
<label index="tt_content.dlf_pagegrid">DLF: Seitenvorschau</label>
<label index="tt_content.dlf_pageview">DLF: Seitenansicht</label>
<label index="tt_content.dlf_search">DLF: Suche</label>
<label index="tt_content.dlf_statistics">DLF: Statistik</label>
<label index="tt_content.dlf_toc">DLF: Inhaltsverzeichnis</label>
<label index="tt_content.dlf_tableofcontents">DLF: Inhaltsverzeichnis</label>
<label index="tt_content.dlf_toolbox">DLF: Werkzeugkasten</label>
<label index="tt_content.dlf_validator">DLF: Validator</label>
<label index="config.metadataFormats">Standard-Namensräume für Metadaten</label>
@ -381,7 +334,7 @@
<label index="config.makeCliUserGroup">CLI Benutzer/Gruppe automatisch anlegen?: (Standard ist "FALSE")</label>
<label index="config.useragent">DLF User-Agent: (Standard ist "Kitodo.Presentation")</label>
<label index="config.caching">Eingelesene METS Dateien zwischenspeichern: Dies kann die Geschwindigkeit geringfügig verbessern, führt aber zu einer sehr großen "fe_session_data" Tabelle (Standard ist "FALSE")</label>
<label index="config.publishNewCollections">Neue Kollektionen publizieren?: Sollen neue Kollektionen automatisch in der OAI-Schnittstelle veröffentlicht werden? (Standard ist "TRUE")</label>
<label index="config.publishNewCollections">Neue Kollektionen publizieren?: Sollen neue Kollektionen automatisch in der OAI-PMH-Schnittstelle veröffentlicht werden? (Standard ist "TRUE")</label>
<label index="config.unhideOnIndex">Indexierte Dokumente einblenden?: Sollen ausgeblendete Dokumente bei der erneuten Indexierung wieder eingeblendet werden? (Standard ist "FALSE")</label>
<label index="config.fileGrps">Seiten fileGrps: Komma-getrennte Liste der @USE Attributwerte der Seitenansichten nach aufsteigender Größe sortiert (Standard ist "MIN,DEFAULT,MAX")</label>
<label index="config.fileGrpThumbs">Vorschau fileGrp: @USE Attributwert der Vorschaubilder (Standard ist "THUMBS")</label>
@ -396,53 +349,6 @@
<label index="config.solrUser">Solr Server Benutzername: (Standard ist "")</label>
<label index="config.solrPass">Solr Server Kennwort: (Standard ist "")</label>
<label index="config.solrTimeout">Solr Server Timeout: (Standard ist "10")</label>
<label index="solr.connected">Verbindung hergestellt!</label>
<label index="solr.status">Apache Solr gibt den Statuscode &lt;strong&gt;%s&lt;/strong&gt; zurück.</label>
<label index="solr.notConnected">Verbindung fehlgeschlagen!</label>
<label index="solr.error">Apache Solr ist unter &lt;strong&gt;%s&lt;/strong&gt; nicht erreichbar.</label>
<label index="metadataFormats.nsOkay">Standard-Namensräume gefunden!</label>
<label index="metadataFormats.nsOkayMsg">Die Standard-Namensräume für MODS, TEIHDR und ALTO sind definiert.</label>
<label index="metadataFormats.nsCreated">Standard-Namensräume erfolgreich angelegt!</label>
<label index="metadataFormats.nsCreatedMsg">Die Standard-Namensräume für MODS, TEIHDR und/oder ALTO wurden erfolgreich definiert.</label>
<label index="metadataFormats.nsNotCreated">Standard-Namensräume nicht gefunden!</label>
<label index="metadataFormats.nsNotCreatedMsg">Die Standard-Namensräume für MODS, TEIHDR und/oder ALTO konnten nicht definiert werden.</label>
<label index="cliUserGroup.usrRealName">Kitodo.Presentation Kommandozeilen-Indexierungsdienst</label>
<label index="cliUserGroup.usrOkay">Nutzer "_cli_dlf" gefunden!</label>
<label index="cliUserGroup.usrOkayMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst ist korrekt konfiguriert und aktiviert.</label>
<label index="cliUserGroup.usrConfigured">Nutzer "_cli_dlf" erfolgreich konfiguriert!</label>
<label index="cliUserGroup.usrConfiguredMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst wurde erfolgreich konfiguriert.</label>
<label index="cliUserGroup.usrNotConfigured">Nutzer "_cli_dlf" nicht konfiguriert!</label>
<label index="cliUserGroup.usrNotConfiguredMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst existiert, ist aber nicht korrekt konfiguriert.</label>
<label index="cliUserGroup.usrCreated">Nutzer "_cli_dlf" erfolgreich angelegt!</label>
<label index="cliUserGroup.usrCreatedMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst wurde erfolgreich angelegt und konfiguriert.</label>
<label index="cliUserGroup.usrNotCreated">Nutzer "_cli_dlf" nicht gefunden!</label>
<label index="cliUserGroup.usrNotCreatedMsg">Der Nutzer für den Kommandozeilen-Indexierungsdienst existiert nicht.</label>
<label index="cliUserGroup.grpDescription">Nutzergruppe für den Kitodo.Presentation Kommandozeilen-Indexierungsdienst.</label>
<label index="cliUserGroup.grpOkay">Nutzergruppe "_cli_dlf" gefunden!</label>
<label index="cliUserGroup.grpOkayMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst ist korrekt konfiguriert und aktiviert.</label>
<label index="cliUserGroup.grpConfigured">Nutzergruppe "_cli_dlf" erfolgreich konfiguriert!</label>
<label index="cliUserGroup.grpConfiguredMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst wurde erfolgreich konfiguriert.</label>
<label index="cliUserGroup.grpNotConfigured">Nutzergruppe "_cli_dlf" nicht konfiguriert!</label>
<label index="cliUserGroup.grpNotConfiguredMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst existiert, ist aber nicht korrekt konfiguriert.</label>
<label index="cliUserGroup.grpCreated">Nutzergruppe "_cli_dlf" erfolgreich angelegt!</label>
<label index="cliUserGroup.grpCreatedMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst wurde erfolgreich angelegt und konfiguriert.</label>
<label index="cliUserGroup.grpNotCreated">Nutzergruppe "_cli_dlf" nicht gefunden!</label>
<label index="cliUserGroup.grpNotCreatedMsg">Die Nutzergruppe für den Kommandozeilen-Indexierungsdienst existiert nicht.</label>
<label index="cliUserGroup.cliOkay">Kommandozeilen-Schnittstelle verfügbar!</label>
<label index="cliUserGroup.cliOkayMsg">Die TYPO3-Kommandozeilenschnittstelle steht für den Indexierungsdienst zur Verfügung.</label>
<label index="cliUserGroup.cliNotOkay">Kommandozeilen-Schnittstelle nicht verfügbar!</label>
<label index="cliUserGroup.cliNotOkayMsg">Die TYPO3-Kommandozeilenschnittstelle steht für den Indexierungsdienst nicht zur Verfügung.</label>
<label index="update.metadataConfig">Aktualisierung der Metadatenkonfiguration...</label>
<label index="update.metadataConfigOkay">...erfolgreich beendet! Alle Datensätze wurden ins IRRE-Schema konvertiert.</label>
<label index="update.metadataConfigNotOkay">...abgebrochen! Die Überführung der Datensätze ins IRRE-Schema muss manuell erfolgen.</label>
<label index="update.copyIndexRelatedColumns">Kopieren der Index bezogenen Tabellenspalten...</label>
<label index="update.copyIndexRelatedColumnsOkay">...erfolgreich beendet! Tabellen wurden erfolgreich kopiert.</label>
<label index="update.copyIndexRelatedColumnsNotOkay">...abgebrochen! Das Kopieren der Index bezogenen Tabellenspalten (tokenized, stored, indexed, boost, autocomplete) der Tabelle tx_dlf_metadata muss manuell erfolgen.</label>
<label index="update.solariumSolrUpdate">Hinzufügen der Solr Kerne...</label>
<label index="update.solariumSolrUpdateOkay">...erfolgreich beendet! Bitte re-indexieren Sie jetzt alle Dokumente.</label>
<label index="update.solariumSolrUpdateNotOkay">...für Kern %s fehlgeschlagen! Bitte überprüfen Sie die Solr-Konfiguration.</label>
<label index="update.FormatClasses">Format-Klassen auf Namensräume umstellen...</label>
<label index="update.FormatClassesOkay">...erfolgreich beendet! Bitte prüfen Sie dennoch alle Formateinträge im Wurzelknoten des Seitenbaums.</label>
</languageKey>
</data>
</T3locallang>

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_listview</description>
<description>Language labels for plugin ListView</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_metadata</description>
<description>Language labels for plugin Metadata</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_navigation</description>
<description>Language labels for plugin Navigation</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_oai</description>
<description>Language labels for plugin OaiPmh</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_pagegrid</description>
<description>Language labels for plugin PageGrid</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_pageview</description>
<description>Language labels for plugin PageView</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for tool tx_dlf_toolsPdf</description>
<description>Language labels for tool PdfDownload</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_search</description>
<description>Language labels for plugin Search</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_statistics</description>
<description>Language labels for plugin Statistics </description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_toc</description>
<description>Language labels for plugin TableOfContents</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_toolbox</description>
<description>Language labels for plugin Toolbox</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -11,7 +11,7 @@
<T3locallang>
<meta type="array">
<type>module</type>
<description>Language labels for plugin tx_dlf_validator</description>
<description>Language labels for plugin Validator</description>
</meta>
<data type="array">
<languageKey index="default" type="array">

View File

@ -8,7 +8,7 @@
* LICENSE.txt file that was distributed with this source code.
-->
<!-- ###TEMPLATECALENDAR### begin -->
<div class="tx-dlf-newspaper-calendar">
<div class="tx-dlf-calendar">
<div class="meta-header">
<div class="year-anchor">
###CALALLYEARS###
@ -67,7 +67,7 @@
<!-- ###TEMPLATECALENDAR### end -->
<!-- ###TEMPLATEYEAR### begin -->
<div class="tx-dlf-newspaper-years">
<div class="tx-dlf-calendar-years">
<div class="meta-header">
<div class="year-anchor">
###CALALLYEARS###

Some files were not shown because too many files have changed in this diff Show More