1 2 3 4 5 6 7 8 9 10 11 12 | $html = Html::tag( 'div' , Html::mergeAttributes( $attributes , $displayAttributes , array ( 'class' => $styleClass . 'nextend-autoplay n2-ow-all nextend-autoplay-image' , 'role' => 'button' , 'aria-label' => n2_( '開始自動撥放' ), 'data-pause-label' => n2_( '暫停自動撥放' ), 'data-play-label' => n2_( '開始自動撥放' ), 'tabindex' => '0' )), Html::image( $play , 'Play' , $sizeAttributes + HTML::addExcludeLazyLoadAttributes( array ( 'class' => 'nextend-autoplay-play' ))) . Html::image( $pause , 'Pause' , $sizeAttributes + HTML::addExcludeLazyLoadAttributes( array ( 'class' => 'nextend-autoplay-pause' )))); |