本文整理汇总了PHP中FluidTYPO3\Flux\Form::getIcon方法的典型用法代码示例。如果您正苦于以下问题:PHP Form::getIcon方法的具体用法?PHP Form::getIcon怎么用?PHP Form::getIcon使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FluidTYPO3\Flux\Form
的用法示例。
在下文中一共展示了Form::getIcon方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: processFormForTable
/**
* @param string $table
* @param Form $form
*/
protected function processFormForTable($table, Form $form)
{
$extensionName = $form->getExtensionName();
$extensionKey = ExtensionNamingUtility::getExtensionKey($extensionName);
$tableConfiguration = self::$tableTemplate;
$fields = array();
$labelFields = $form->getOption('labels');
$enableColumns = array();
foreach ($form->getFields() as $field) {
$name = $field->getName();
// note: extracts the TCEforms sub-array from the configuration, as required in TCA.
$fields[$name] = array_pop($field->build());
}
if (TRUE === $form->getOption('hide')) {
$enableColumns['disabled'] = 'hidden';
}
if (TRUE === $form->getOption('start')) {
$enableColumns['start'] = 'starttime';
}
if (TRUE === $form->getOption('end')) {
$enableColumns['end'] = 'endtime';
}
if (TRUE === $form->getOption('frontendUserGroup')) {
$enableColumns['fe_group'] = 'fe_group';
}
$tableConfiguration['iconfile'] = ExtensionManagementUtility::extRelPath($extensionKey) . $form->getIcon();
$tableConfiguration['enablecolumns'] = $enableColumns;
$showRecordsFieldList = $this->buildShowItemList($form);
$GLOBALS['TCA'][$table] = array('title' => $form->getLabel(), 'ctrl' => $tableConfiguration, 'interface' => array('showRecordFieldList' => implode(',', array_keys($fields))), 'columns' => $fields, 'types' => array(0 => array('showitem' => $showRecordsFieldList)));
if (TRUE === $form->getOption('delete')) {
$GLOBALS['TCA'][$table]['ctrl']['delete'] = 'deleted';
}
if (NULL === $labelFields) {
reset($fields);
$GLOBALS['TCA'][$table]['ctrl']['label'] = key($fields);
} else {
$GLOBALS['TCA'][$table]['ctrl']['label'] = array_shift($labelFields);
$GLOBALS['TCA'][$table]['ctrl']['label_alt'] = implode(',', $labelFields);
}
}
示例2: buildWizardTabItem
/**
* Builds a single Wizard item (one FCE) based on the
* tab id, element id, configuration array and special
* template identity (groupName:Relative/Path/File.html)
*
* @param string $tabId
* @param string $id
* @param \FluidTYPO3\Flux\Form $form
* @param string $templateFileIdentity
* @return string
*/
protected function buildWizardTabItem($tabId, $id, $form, $templateFileIdentity)
{
$icon = $form->getIcon();
$description = $form->getDescription();
if (TRUE === empty($description)) {
$description = '-';
}
$iconFileRelativePath = $icon ? $icon : $this->defaultIcon;
return sprintf('
mod.wizards.newContentElement.wizardItems.%s.elements.%s {
icon = %s
title = %s
description = %s
tt_content_defValues {
CType = fluidcontent_content
tx_fed_fcefile = %s
}
}
', $tabId, $id, $iconFileRelativePath, $form->getLabel(), $description, $templateFileIdentity);
}