Task #24551 » lowerCamelCase-getUrl-t3lib.diff
t3lib/class.t3lib_htmlmail.php | ||
---|---|---|
*/
|
||
public function getURL($url) {
|
||
$url = $this->addUserPass($url);
|
||
return t3lib_div::getURL($url);
|
||
return t3lib_div::getUrl($url);
|
||
}
|
||
... | ... | |
*/
|
||
public function getMimeType($url) {
|
||
$mimeType = '';
|
||
$headers = trim(t3lib_div::getURL($url, 2));
|
||
$headers = trim(t3lib_div::getUrl($url, 2));
|
||
if ($headers) {
|
||
$matches = array();
|
||
if (preg_match('/(Content-Type:[\s]*)([a-zA-Z_0-9\/\-\.\+]*)([\s]|$)/', $headers, $matches)) {
|
t3lib/class.t3lib_pagerenderer.php | ||
---|---|---|
// get template
|
||
$templateFile = t3lib_div::getFileAbsFileName($this->templateFile, TRUE);
|
||
$template = t3lib_div::getURL($templateFile);
|
||
$template = t3lib_div::getUrl($templateFile);
|
||
if ($this->removeLineBreaksFromTemplate) {
|
||
$template = strtr($template, array(LF => '', CR => ''));
|
t3lib/class.t3lib_parsehtml_proc.php | ||
---|---|---|
*
|
||
* @param string Filepath/URL to read
|
||
* @return string The content from the resource given as input.
|
||
* @see t3lib_div::getURL()
|
||
* @see t3lib_div::getUrl()
|
||
*/
|
||
function getURL($url) {
|
||
return t3lib_div::getURL($url);
|
||
return t3lib_div::getUrl($url);
|
||
}
|
||
/**
|
t3lib/class.t3lib_tceforms.php | ||
---|---|---|
* @return void
|
||
*/
|
||
function setNewBEDesign() {
|
||
$template = t3lib_div::getURL(PATH_typo3 . $this->templateFile);
|
||
$template = t3lib_div::getUrl(PATH_typo3 . $this->templateFile);
|
||
// Wrapping all table rows for a particular record being edited:
|
||
$this->totalWrap = t3lib_parsehtml::getSubpart($template, '###TOTALWRAP###');
|