Bug #18256 » 20080220_RFC_7595.diff
typo3/stylesheet.css (working copy) | ||
---|---|---|
background-color: #9BA1A8;
|
||
}
|
||
|
||
body#typo3-alt-doc-php, body#typo3-db-list-php, body#ext-cms-layout-db-layout-php, body#ext-tstemplate-ts-index-php, body#typo3-mod-web-perm-index-php, body#typo3-mod-web-info-index-php, body#typo3-mod-web-func-index-php, body#ext-version-cm1-index-php, body#ext-setup-mod-index-php, body#typo3-mod-user-ws-index-php, body#typo3-mod-user-ws-workspaceforms-php, body#typo3-mod-php, body#ext-tsconfig-help-mod1-index-php, body#typo3-mod-tools-em-index-php, body#ext-lowlevel-dbint-index-php, body#ext-lowlevel-config-index-php { padding: 0; margin: 0; overflow: hidden; height: 100%; }
|
||
body#typo3-alt-doc-php, body#typo3-db-list-php, body#ext-cms-layout-db-layout-php, body#ext-tstemplate-ts-index-php, body#typo3-mod-web-perm-index-php, body#typo3-mod-web-info-index-php, body#typo3-mod-web-func-index-php, body#ext-version-cm1-index-php, body#ext-setup-mod-index-php, body#typo3-mod-user-ws-index-php, body#typo3-mod-user-ws-workspaceforms-php, body#typo3-mod-php, body#ext-tsconfig-help-mod1-index-php, body#typo3-mod-tools-em-index-php, body#ext-lowlevel-dbint-index-php, body#ext-lowlevel-config-index-php, body#ext-indexed-search-mod-index-php { padding: 0; margin: 0; overflow: hidden; height: 100%; }
|
||
|
||
|
||
/****************************************
|
typo3/sysext/indexed_search/mod/index.php (working copy) | ||
---|---|---|
|
||
$this->menuConfig();
|
||
|
||
$this->doc = t3lib_div::makeInstance("noDoc");
|
||
$this->doc->form='<form action="" method="POST">';
|
||
$this->doc = t3lib_div::makeInstance('template');
|
||
$this->doc->form = '<form action="" method="post">';
|
||
$this->doc->backPath = $BACK_PATH;
|
||
$this->doc->setModuleTemplate('templates/indexed_search.html');
|
||
$this->doc->docType = 'xhtml_trans';
|
||
|
||
// JavaScript
|
||
$this->doc->JScode = '
|
||
<script language="javascript" type="text/javascript">
|
||
... | ... | |
global $BE_USER,$LANG,$BACK_PATH,$TCA_DESCR,$TCA,$CLIENT,$TYPO3_CONF_VARS;
|
||
|
||
$this->content="";
|
||
$this->content.=$this->doc->startPage("Indexing Engine Statistics");
|
||
|
||
$menu=t3lib_BEfunc::getFuncMenu(0,"SET[function]",$this->MOD_SETTINGS["function"],$this->MOD_MENU["function"]);
|
||
|
||
$this->content.=$this->doc->header("Indexing Engine Statistics");
|
||
$this->content.=$this->doc->spacer(5);
|
||
$this->content.=$this->doc->section('',$menu);
|
||
|
||
switch($this->MOD_SETTINGS["function"]) {
|
||
case "stat":
|
||
... | ... | |
$this->content.=$this->doc->spacer(15);
|
||
break;
|
||
}
|
||
|
||
$docHeaderButtons = array();
|
||
$markers = array(
|
||
'CSH' => '',
|
||
'FUNCTION_MENU' => t3lib_BEfunc::getFuncMenu(0, 'SET[function]', $this->MOD_SETTINGS['function'], $this->MOD_MENU['function']),
|
||
'CONTENT' => $this->content
|
||
);
|
||
|
||
$this->content=$this->doc->startPage('Indexing Engine Statistics');
|
||
$this->content.= $this->doc->moduleBody($this->pageinfo, $docHeaderButtons, $markers);
|
||
$this->content.=$this->doc->endPage();
|
||
$this->content = $this->doc->insertStylesAndJS($this->content);
|
||
}
|
||
|
||
/**
|
||
... | ... | |
* @return [type] ...
|
||
*/
|
||
function printContent() {
|
||
$this->content.=$this->doc->endPage();
|
||
echo $this->content;
|
||
}
|
||
|
typo3/templates/indexed_search.html (revision 0) | ||
---|---|---|
<!-- ###FULLDOC### begin -->
|
||
<div class="typo3-fullDoc">
|
||
<!-- Page header with buttons, path details and csh -->
|
||
<div id="typo3-docheader">
|
||
<div id="typo3-docheader-row1">
|
||
<div class="buttonsleft"></div>
|
||
<div class="buttonsright">###FUNCTION_MENU###</div>
|
||
</div>
|
||
<div id="typo3-docheader-row2">
|
||
<div class="pagepath">###CSH###</div>
|
||
<div class="infooptions"></div>
|
||
</div>
|
||
</div>
|
||
<!-- Content of module, for instance listing, info or editing -->
|
||
<div id="typo3-docbody">
|
||
###CONTENT###
|
||
</div>
|
||
</div>
|
||
<!-- ###FULLDOC### end -->
|