contributions/models.searchindex/lib/helpers/searchindexmodelrule.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Contains rules for indexing a single model 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup SearchIndex 00007 */ 00008 class SearchIndexModelRule { 00009 public $model; 00010 public $model_id; 00011 public $weight; 00012 00013 public function __construct($model, $id, $weight = 1) { 00014 $this->model = $model; 00015 $this->model_id = $id; 00016 $this->weight = $weight; 00017 } 00018 }