Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/smart-sl.../Nextend/Framewor.../Form/Element/Select
File: FillMode.php
<?php
[0] Fix | Delete
[1] Fix | Delete
[2] Fix | Delete
namespace Nextend\Framework\Form\Element\Select;
[3] Fix | Delete
[4] Fix | Delete
use Nextend\Framework\Form\Element\Select;
[5] Fix | Delete
[6] Fix | Delete
class FillMode extends Select {
[7] Fix | Delete
[8] Fix | Delete
protected $useGlobal = false;
[9] Fix | Delete
[10] Fix | Delete
protected function fetchElement() {
[11] Fix | Delete
[12] Fix | Delete
$this->options = array(
[13] Fix | Delete
'fill' => n2_('Fill'),
[14] Fix | Delete
'blurfit' => n2_('Blur fit'),
[15] Fix | Delete
'fit' => n2_('Fit'),
[16] Fix | Delete
'stretch' => n2_('Stretch'),
[17] Fix | Delete
'center' => n2_('Center')
[18] Fix | Delete
);
[19] Fix | Delete
[20] Fix | Delete
if ($this->useGlobal) {
[21] Fix | Delete
$this->options = array_merge(array(
[22] Fix | Delete
'default' => n2_('Slider\'s default')
[23] Fix | Delete
), $this->options);
[24] Fix | Delete
}
[25] Fix | Delete
[26] Fix | Delete
return parent::fetchElement();
[27] Fix | Delete
}
[28] Fix | Delete
[29] Fix | Delete
/**
[30] Fix | Delete
* @param bool $useGlobal
[31] Fix | Delete
*/
[32] Fix | Delete
public function setUseGlobal($useGlobal) {
[33] Fix | Delete
$this->useGlobal = $useGlobal;
[34] Fix | Delete
}
[35] Fix | Delete
}
[36] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function