1. Go to this page and download the library: Download rezozero/social-links library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
rezozero / social-links example snippets
// Construct a new SocialLinks
$share = new \RZ\SocialLinks\SocialLinks(array(
'url' => 'http://www.rezo-zero.com',
'title' => 'REZO ZERO website homepage',
// Optional image source url for pinterest. must be at least 200px by 200px, if you intent to use for facebook
'imageUrl' => 'http://www.rezo-zero.com/templates/rezo-zero/img/apple-icon.png',
// Optional status for overriding title for twitter, whatsapp and emails body
'status' => 'Hey! Look at this awesome website.'
));
// Set link class prefix
$share->setClassPrefix('social-link');
// Set social icons class prefix
// Use fa for Font Awesome or an
// other for a custom icon set.
$share->setIconPrefix('fa');
// Optional:
// Set link additional classes, for example
// to add "btn" bootstrap classes.
$share->setLinkClasses('btn btn-default');