Version 3.5.3
Microdata auf schema.org umgestellt ID für News-Rating wird nicht mehr überschrieben
This commit is contained in:
		| @@ -49,7 +49,7 @@ class RateItNews extends RateItFrontend { | ||||
| 	   		 | ||||
| 	   		$objTemplate->descriptionId = 'rateItRating-'.$ratingId.'-description'; | ||||
| 	   		$objTemplate->description = $this->getStarMessage($rating); | ||||
| 	   		$objTemplate->id = 'rateItRating-'.$ratingId.'-news-'.$stars.'_'.$this->intStars; | ||||
| 	   		$objTemplate->ratingId = 'rateItRating-'.$ratingId.'-news-'.$stars.'_'.$this->intStars; | ||||
| 			   $objTemplate->rateit_class = 'rateItRating'; | ||||
| 	   		$objTemplate->itemreviewed = $rating['title']; | ||||
| 	   		$objTemplate->actRating = $this->percentToStars($rating['rating']); | ||||
|   | ||||
| @@ -1,24 +1,25 @@ | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|    <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
| @@ -62,25 +63,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|    <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
|   | ||||
| @@ -1,25 +1,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|    <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
| @@ -63,25 +64,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|    <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
|   | ||||
| @@ -2,26 +2,27 @@ | ||||
|  | ||||
|   <?php if ($this->rateit_rating_before): ?> | ||||
|   <!-- indexer::stop --> | ||||
|   <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|   </div> | ||||
|    <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|       <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|          <?php if ($this->showBefore) : ?> | ||||
|           <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|          <?php endif; ?> | ||||
|          <div class="wrapper"> | ||||
|                <div class="rateItRating-selected" style="display: block;"></div> | ||||
|                <div class="rateItRating-hover"></div> | ||||
|          </div> | ||||
|          <?php if ($this->showAfter) : ?> | ||||
|           <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|          <?php endif; ?> | ||||
|       </div> | ||||
|       <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|       <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|          <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|          <span itemprop="worstRating">0</span> | ||||
|          <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|          <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|       </span> | ||||
|    </div> | ||||
|   <!-- indexer::continue --> | ||||
|   <?php endif; ?> | ||||
|      | ||||
| @@ -38,26 +39,27 @@ | ||||
|  | ||||
|   <?php if ($this->rateit_rating_after): ?> | ||||
|   <!-- indexer::stop --> | ||||
|   <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|   </div> | ||||
|    <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|       <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|          <?php if ($this->showBefore) : ?> | ||||
|           <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|          <?php endif; ?> | ||||
|          <div class="wrapper"> | ||||
|                <div class="rateItRating-selected" style="display: block;"></div> | ||||
|                <div class="rateItRating-hover"></div> | ||||
|          </div> | ||||
|          <?php if ($this->showAfter) : ?> | ||||
|           <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|          <?php endif; ?> | ||||
|       </div> | ||||
|       <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|       <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|          <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|          <span itemprop="worstRating">0</span> | ||||
|          <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|          <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|       </span> | ||||
|    </div> | ||||
|   <!-- indexer::continue --> | ||||
|   <?php endif; ?> | ||||
|  | ||||
|   | ||||
| @@ -2,26 +2,27 @@ | ||||
|  | ||||
|   <?php if ($this->rateit_rating_before): ?> | ||||
|   <!-- indexer::stop --> | ||||
|   <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|   </div> | ||||
| 	<div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
| 	   <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 	      <?php if ($this->showBefore) : ?> | ||||
| 	       <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	      <?php endif; ?> | ||||
| 	      <div class="wrapper"> | ||||
| 	            <div class="rateItRating-selected" style="display: block;"></div> | ||||
| 	            <div class="rateItRating-hover"></div> | ||||
| 	      </div> | ||||
| 	      <?php if ($this->showAfter) : ?> | ||||
| 	       <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	      <?php endif; ?> | ||||
| 	   </div> | ||||
| 	   <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
| 	   <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
| 	      <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
| 	      <span itemprop="worstRating">0</span> | ||||
| 	      <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
| 	      <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
| 	   </span> | ||||
| 	</div> | ||||
|   <!-- indexer::continue --> | ||||
|   <?php endif; ?> | ||||
|  | ||||
| @@ -38,26 +39,27 @@ | ||||
|  | ||||
|   <?php if ($this->rateit_rating_after): ?> | ||||
|   <!-- indexer::stop --> | ||||
|   <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|   </div> | ||||
|    <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|       <div id="<?php echo $this->rateItID; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|          <?php if ($this->showBefore) : ?> | ||||
|           <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|          <?php endif; ?> | ||||
|          <div class="wrapper"> | ||||
|                <div class="rateItRating-selected" style="display: block;"></div> | ||||
|                <div class="rateItRating-hover"></div> | ||||
|          </div> | ||||
|          <?php if ($this->showAfter) : ?> | ||||
|           <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|          <?php endif; ?> | ||||
|       </div> | ||||
|       <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|       <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|          <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|          <span itemprop="worstRating">0</span> | ||||
|          <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|          <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|       </span> | ||||
|    </div> | ||||
|   <!-- indexer::continue --> | ||||
|   <?php endif; ?> | ||||
|  | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 	<?php if ($this->showBefore) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<?php endif; ?> | ||||
| @@ -66,7 +66,7 @@ | ||||
| </div> | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|    <?php if ($this->showBefore) : ?> | ||||
|    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|    <?php endif; ?> | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 	<?php if ($this->showBefore) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<?php endif; ?> | ||||
| @@ -67,7 +67,7 @@ | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|     <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|   | ||||
| @@ -1,25 +1,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
| 	<div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 		<?php if ($this->showBefore) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 		<div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
| 		</div> | ||||
| 		<?php if ($this->showAfter) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 	</div> | ||||
| 	<span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
| 	<span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
| 		<span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
| 		<span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
| 	</span> | ||||
| 	<span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
| @@ -75,25 +76,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
|   | ||||
| @@ -1,25 +1,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
| 	<div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 		<?php if ($this->showBefore) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 		<div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
| 		</div> | ||||
| 		<?php if ($this->showAfter) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 	</div> | ||||
| 	<span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
| 	<span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
| 		<span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
| 		<span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
| 	</span> | ||||
| 	<span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
| @@ -75,25 +76,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 	<?php if ($this->showBefore) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<?php endif; ?> | ||||
| @@ -46,7 +46,7 @@ | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|     <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 	<?php if ($this->showBefore) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<?php endif; ?> | ||||
| @@ -46,7 +46,7 @@ | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|     <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|   | ||||
| @@ -1,8 +1,8 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
| 	<div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
| 	<div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 		<?php if ($this->showBefore) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| @@ -14,12 +14,13 @@ | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 	</div> | ||||
| 	<span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
| 	<span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
| 		<span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
| 		<span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
| 	</span> | ||||
| 	<span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
| 	<span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
| 	<span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
| 		<span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
| @@ -53,25 +54,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
|   | ||||
| @@ -1,25 +1,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
| 	<div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 		<?php if ($this->showBefore) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 		<div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
| 		</div> | ||||
| 		<?php if ($this->showAfter) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 	</div> | ||||
| 	<span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
| 	<span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
| 		<span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
| 		<span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
| 	</span> | ||||
| 	<span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
| @@ -53,25 +54,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 	<?php if ($this->showBefore) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<?php endif; ?> | ||||
| @@ -32,7 +32,7 @@ | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|     <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 	<?php if ($this->showBefore) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<?php endif; ?> | ||||
| @@ -32,7 +32,7 @@ | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|     <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|   | ||||
| @@ -1,25 +1,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
| 	<div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 		<?php if ($this->showBefore) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 		<div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
| 		</div> | ||||
| 		<?php if ($this->showAfter) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 	</div> | ||||
| 	<span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
| 	<span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
| 		<span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
| 		<span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
| 	</span> | ||||
| 	<span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
| @@ -39,25 +40,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
|   | ||||
| @@ -1,25 +1,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
| 	<div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 		<?php if ($this->showBefore) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 		<div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
| 		</div> | ||||
| 		<?php if ($this->showAfter) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 	</div> | ||||
| 	<span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
| 	<span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
| 		<span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
| 		<span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
| 	</span> | ||||
| 	<span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
| @@ -39,25 +40,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 	<?php if ($this->showBefore) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<?php endif; ?> | ||||
| @@ -22,7 +22,7 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 	<?php if ($this->showBefore) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<?php endif; ?> | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 	<?php if ($this->showBefore) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<?php endif; ?> | ||||
| @@ -22,7 +22,7 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 	<?php if ($this->showBefore) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<?php endif; ?> | ||||
|   | ||||
| @@ -1,25 +1,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
| 	<div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 		<?php if ($this->showBefore) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 		<div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
| 		</div> | ||||
| 		<?php if ($this->showAfter) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 	</div> | ||||
| 	<span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
| 	<span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
| 		<span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
| 		<span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
| 	</span> | ||||
| 	<span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
| @@ -30,25 +31,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
|   | ||||
| @@ -1,25 +1,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_before): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
| 	<div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
| 		<?php if ($this->showBefore) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 		<div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
| 		</div> | ||||
| 		<?php if ($this->showAfter) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 	</div> | ||||
| 	<span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
| 	<span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
| 		<span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
| 		<span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
| 	</span> | ||||
| 	<span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
| @@ -30,25 +31,26 @@ | ||||
|  | ||||
| <?php if ($this->rateit_rating_after): ?> | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|         <?php if ($this->showBefore) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|         <div class="wrapper"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|    <div id="<?php echo $this->ratingId; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>"> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|         </div> | ||||
|         <?php if ($this->showAfter) : ?> | ||||
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|         <?php endif; ?> | ||||
|     </div> | ||||
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
|         <span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
|         <span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
|     </span> | ||||
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| <?php endif; ?> | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| <!-- indexer::stop --> | ||||
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata"> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>> | ||||
| 		<?php if ($this->showBefore) : ?> | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| @@ -12,11 +12,12 @@ | ||||
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 		<?php endif; ?> | ||||
| 	</div> | ||||
| 	<span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span> | ||||
| 	<span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating"> | ||||
| 		<span itemprop="average"><?php echo $this->actRating; ?></span> | ||||
| 		<span itemprop="best"><?php echo $this->maxRating; ?></span> | ||||
| 	</span> | ||||
| 	<span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span> | ||||
| 	<span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
| @@ -1,16 +1,23 @@ | ||||
| <!-- indexer::stop --> | ||||
| <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>> | ||||
| 	<?php if ($this->showBefore) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<div class="ratingText ratingError">Microdata-Template ist bei XHTML nicht verfügbar. Bitte stellen Sie auf HTML5 um oder wechseln Sie das verwendete Template!</div> | ||||
| 	<?php endif; ?> | ||||
| 	<div class="wrapper"> | ||||
|         <div class="rateItRating-selected" style="display: block;"></div> | ||||
|         <div class="rateItRating-hover"></div> | ||||
| 	</div> | ||||
| 	<?php if ($this->showAfter) : ?> | ||||
| 	<div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
| 	<div class="ratingText ratingError">Microdata-Template ist bei XHTML nicht verfügbar. Bitte stellen Sie auf HTML5 um oder wechseln Sie das verwendete Template!</div> | ||||
| 	<?php endif; ?> | ||||
| <div itemtype="http://schema.org/CreativeWork" itemscope="" class="rating-microdata"> | ||||
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>> | ||||
|       <?php if ($this->showBefore) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|       <div class="wrapper"> | ||||
|             <div class="rateItRating-selected" style="display: block;"></div> | ||||
|             <div class="rateItRating-hover"></div> | ||||
|       </div> | ||||
|       <?php if ($this->showAfter) : ?> | ||||
|        <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div> | ||||
|       <?php endif; ?> | ||||
|    </div> | ||||
|    <span class="rating-microdata" itemprop="name"><?php echo $this->itemreviewed; ?></span> | ||||
|    <span class="rating-microdata" itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating"> | ||||
|       <span itemprop="ratingValue"><?php echo $this->actRating; ?></span> | ||||
|       <span itemprop="worstRating">0</span> | ||||
|       <span itemprop="bestRating"><?php echo $this->maxRating; ?></span> | ||||
|       <span itemprop="ratingCount"><?php echo $this->votes; ?></span> | ||||
|    </span> | ||||
| </div> | ||||
| <!-- indexer::continue --> | ||||
		Reference in New Issue
	
	Block a user