Bug #22785 ยป 14565.diff
t3lib/class.t3lib_pagerenderer.php (working copy) | ||
---|---|---|
/*****************************************************/
|
||
/* */
|
||
/* Public Enablers */
|
||
/* Public Enablers / Disablers */
|
||
/* */
|
||
/* */
|
||
/*****************************************************/
|
||
/**
|
||
* Enables MoveJsFromHeaderToFooter
|
||
*
|
||
... | ... | |
}
|
||
/**
|
||
* Disables MoveJsFromHeaderToFooter
|
||
*
|
||
* @param void
|
||
* @return void
|
||
*/
|
||
public function disableMoveJsFromHeaderToFooter() {
|
||
$this->moveJsFromHeaderToFooter = FALSE;
|
||
}
|
||
|
||
/**
|
||
* Enables compression of javascript
|
||
*
|
||
* @param void
|
||
... | ... | |
public function enableCompressJavascript() {
|
||
$this->compressJavascript = TRUE;
|
||
}
|
||
|
||
/**
|
||
* Disables compression of javascript
|
||
*
|
||
* @param void
|
||
* @return void
|
||
*/
|
||
public function disableCompressJavascript() {
|
||
$this->compressJavascript = FALSE;
|
||
}
|
||
/**
|
||
* Enables compression of css
|
||
... | ... | |
}
|
||
/**
|
||
* Disables compression of css
|
||
*
|
||
* @param void
|
||
* @return void
|
||
*/
|
||
public function disableCompressCss() {
|
||
$this->compressCss = FALSE;
|
||
}
|
||
/**
|
||
* Enables concatenation of js/css files
|
||
*
|
||
... | ... | |
}
|
||
/**
|
||
* Disables concatenation of js/css files
|
||
*
|
||
* @param void
|
||
* @return void
|
||
*/
|
||
public function disableConcatenateFiles() {
|
||
$this->concatenateFiles = FALSE;
|
||
}
|
||
/**
|
||
* Sets removal of all line breaks in template
|
||
*
|
||
* @param void
|
||
... | ... | |
public function enableRemoveLineBreaksFromTemplate() {
|
||
$this->removeLineBreaksFromTemplate = TRUE;
|
||
}
|
||
|
||
/**
|
||
* Unsets removal of all line breaks in template
|
||
*
|
||
* @param void
|
||
* @return void
|
||
*/
|
||
public function disableRemoveLineBreaksFromTemplate() {
|
||
$this->removeLineBreaksFromTemplate = FALSE;
|
||
}
|
||
/*****************************************************/
|
||
/* */
|