24 lines
881 B
PHP
24 lines
881 B
PHP
<?php
|
|
/**
|
|
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
|
* @copyright Since 2007 PrestaShop SA and Contributors
|
|
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
|
|
*/
|
|
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
require_once dirname(__FILE__) . '/AdminStEasyVideoMiniatureBaseController.php';
|
|
class AdminStEasyVideoMiniatureMobileController extends AdminStEasyVideoMiniatureBaseController
|
|
{
|
|
protected $contr = 'MOBILE';
|
|
public function updateOptionStEasyVideoMiniatureVideoTemplateMobile($val)
|
|
{
|
|
Configuration::updateValue($this->module->_prefix_st.'MINIATURE_VIDEO_TEMPLATE_MOBILE', $val, true);
|
|
}
|
|
public function updateOptionStEasyVideoMiniatureButtonTemplateMobile($val)
|
|
{
|
|
Configuration::updateValue($this->module->_prefix_st.'MINIATURE_BUTTON_TEMPLATE_MOBILE', $val, true);
|
|
}
|
|
}
|