26 lines
617 B
PHP
Executable File
26 lines
617 B
PHP
Executable File
<?php namespace OFFLINE\SiteSearch\Components;
|
|
|
|
use Cms\Classes\ComponentBase;
|
|
|
|
class SiteSearchInclude extends ComponentBase
|
|
{
|
|
/**
|
|
* This is a simple empty dummy component to mark
|
|
* cms pages that should be included in the
|
|
* search results.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function componentDetails()
|
|
{
|
|
return [
|
|
'name' => 'offline.sitesearch::lang.siteSearchInclude.title',
|
|
'description' => 'offline.sitesearch::lang.siteSearchInclude.description',
|
|
];
|
|
}
|
|
|
|
public function defineProperties()
|
|
{
|
|
return [];
|
|
}
|
|
} |