You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
361 B

<?php
/**
* Created by Error202
* Date: 05.07.2018
*/
namespace core\components;
use Yii;
class SearchPerformance {
public static function init()
{
$connection = Yii::$app->getDb();
$command = $connection->createCommand("
CREATE OR REPLACE VIEW view_search AS " . implode(' UNION ', Yii::$app->params['search_rules']));
$command->execute();
}
}