17 lines
314 B
PHP
17 lines
314 B
PHP
|
<?php
|
||
|
|
||
|
class AdminMetaController extends AdminMetaControllerCore
|
||
|
{
|
||
|
public function getRobotsContent()
|
||
|
{
|
||
|
$tab = parent::getRobotsContent();
|
||
|
$tab['GB'][] = '?filter_by';
|
||
|
$tab['GB'][] = '&filter_by';
|
||
|
$tab['GB'][] = '?order_by';
|
||
|
$tab['GB'][] = '&order_by';
|
||
|
|
||
|
return $tab;
|
||
|
}
|
||
|
|
||
|
}
|