mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
36 lines
510 B
PHP
36 lines
510 B
PHP
<?php
|
|
|
|
/**
|
|
* Extend this class instead of iPageUIBlockExtension if you don't need to overload all methods
|
|
*
|
|
* @api
|
|
* @package UIBlockExtensibilityAPI
|
|
* @since 3.0.0
|
|
*/
|
|
abstract class AbstractPageUIBlockExtension implements iPageUIBlockExtension
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function GetBannerBlock()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function GetHeaderBlock()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function GetFooterBlock()
|
|
{
|
|
return null;
|
|
}
|
|
}
|