Issue #1881674 by dawehner: Drop legacy area render functions.

8.0.x
catch 2013-02-06 14:02:52 +00:00
parent 5aeaea3206
commit 059e30b006
1 changed files with 0 additions and 25 deletions

View File

@ -2407,31 +2407,6 @@ abstract class DisplayPluginBase extends PluginBase {
}
}
/**
* Legacy functions.
*/
/**
* Render the header of the view.
*/
public function renderHeader() {
$empty = empty($this->view->result);
return $this->renderArea('header', $empty);
}
/**
* Render the footer of the view.
*/
public function renderFooter() {
$empty = empty($this->view->result);
return $this->renderArea('footer', $empty);
}
public function renderEmpty() {
return $this->renderArea('empty', TRUE);
}
/**
* If this display creates a page with a menu item, implement it here.
*/