panix / mod-zend-search
Zend Lucene search
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:pixelion-module
pkg:composer/panix/mod-zend-search
Requires
- yiisoft/yii2: *
- zendframework/zendsearch: *@RC
This package is auto-updated.
Last update: 2025-12-06 01:12:21 UTC
README
Zend Lucene search
Installation
The preferred way to install this extension is through composer.
- Add
"panix/mod-zend-search" : "*",
"zendframework/zendsearch": "2.0.0rc6"
to the require section of your application's composer.json file.
- Add a new component in
componentssection of your application's configuration file, for example:
'components' => [
'search' => [
'class' => 'panix\mod\search\Search',
'models' => [
'app\modules\page\models\Page',
],
],
// ...
],
- Add behavior in the AR models, for example:
use panix\mod\search\behaviors\SearchBehavior;
public function behaviors()
{
return [
'search' => [
'class' => SearchBehavior::className(),
'searchScope' => function ($model) {
/** @var \yii\db\ActiveQuery $model */
$model->select(['title', 'body', 'url']);
$model->andWhere(['indexed' => true]);
},
'searchFields' => function ($model) {
/** @var self $model */
return [
['name' => 'title', 'value' => $model->title],
['name' => 'body', 'value' => strip_tags($model->body)],
['name' => 'url', 'value' => $model->url, 'type' => SearchBehavior::FIELD_KEYWORD],
['name' => 'model', 'value' => 'page', 'type' => SearchBehavior::FIELD_UNSTORED],
];
}
],
];
}