ramphor/embrati

Embed rating

Installs: 83

Dependents: 3

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:CSS

0.5.0 2021-03-27 04:22 UTC

This package is auto-updated.

Last update: 2024-03-27 10:43:34 UTC


README

Embed rating

Install

composer require ramphor/embrati

Usage

Create Embrati instance

$embrati  = Embrati::getInstance('your_instance_name');

Register Javascript scripts.

// Register script for frontend
$embrati->registerScripts();

// Register script for admin
$embrati->registerAdminScripts();

Create rating UI

The options is RaterJS options. You can see list options at here: https://auxiliary.github.io/rater/

$options = array();
$embrati->create('rating_id', $options);

Display rating only

You need show star rating only please call below method This feature use css-star-rating to show stars. You can check documnent at here: https://github.com/BioPhoton/css-star-rating

$options = array(
  'max' => 5,
  'use_svg' => true,
  'rating' => 2.5 // This is rating value to show stars
);
$embrati->display('rating_id', $options);