| Current Path : /home/smartconb/www/armencom33/libraries/smartslider3/src/SmartSlider3/Parser/Link/ |
| Current File : /home/smartconb/www/armencom33/libraries/smartslider3/src/SmartSlider3/Parser/Link/NextSlide.php |
<?php
namespace Nextend\SmartSlider3\Parser\Link;
use Nextend\Framework\Parser\Link\ParserInterface;
class NextSlide implements ParserInterface {
public function parse($argument, &$attributes) {
$attributes['role'] = 'button';
$attributes['onclick'] = "n2ss.applyActionWithClick(event, 'next');";
return '#';
}
}