1. Go to this page and download the library: Download robertboloc/rbcomment 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/ */
robertboloc / rbcomment example snippets
'modules' => array(
'Application',
'RbComment', // Add this
),
echo $this->rbComment($theme)
echo $this->rbComment()
echo $this->rbComment('uikit')
echo $this->rbComment('bootstrap3')
'email' => array(
/**
* Send email notifications.
*/
'notify' => false,
/**
* Email addresses where to send the notification.
*/
'to' => array(),
/**
* From header. Usually something like [email protected]
*/
'from' => '',
/**
* Subject of the notification email.
*/
'subject' => 'New Comment',
/**
* Text of the comment link.
*/
'context_link_text' => 'See this comment in context',
),
'akismet' => array(
/**
* If this is true, the comment will be checked for spam.
*/
'enabled' => false,
/**
* Your Akismet api key.
*/
'api_key' => '',
/**
* Akismet uses IP addresses. If you are behind a proxy this SHOULD
* be configured to avoid false positives.
* Uses the class \Zend\Http\PhpEnvironment\RemoteAddress
*/
'proxy' => array(
/**
* Use proxy addresses or not.
*/
'use' => false,
/**
* List of trusted proxy IP addresses.
*/
'trusted' => array(
),
/**
* HTTP header to introspect for proxies.
*/
'header' => 'X-Forwarded-For',
),
),
'zfc_user' => array(
/**
* This enables the ZfcUser integration.
*/
'enabled' => false,
),
'gravatar' => array(
/**
* This enables the Gravatar integration.
*/
'enabled' => false,
),
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.