18 lines
360 B
PHP
18 lines
360 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace Nextend\SmartSlider3\Parser\Link;
|
||
|
|
||
|
|
||
|
use Nextend\Framework\Parser\Link\ParserInterface;
|
||
|
|
||
|
class PreviousSlide implements ParserInterface {
|
||
|
|
||
|
public function parse($argument, &$attributes) {
|
||
|
$attributes['role'] = 'button';
|
||
|
|
||
|
$attributes['onclick'] = "n2ss.applyActionWithClick(event, 'previous');";
|
||
|
|
||
|
return '#';
|
||
|
}
|
||
|
}
|