Files
wyczarujprezent.pl/modules/arcontactus/classes/ArContactUsMenuConfigAbstract.php
2024-10-28 22:14:22 +01:00

81 lines
2.5 KiB
PHP

<?php
/**
* 2012-2017 Azelab
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@areama.net so we can send you a copy immediately.
*
* @author Azelab <support@azelab.com>
* @copyright 2017 Azelab
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of Azelab
*/
include_once dirname(__FILE__).'/ArContactUsAbstract.php';
abstract class ArContactUsMenuConfigAbstract extends ArContactUsAbstract
{
public $menu_size;
public $menu_width;
public $menu_style;
public $sidebar_animation;
public $popup_animation;
public $item_style;
public $items_animation;
public $item_border_style;
public $item_border_color;
public $menu_header_on;
public $menu_header;
public $header_close;
public $header_close_bg;
public $header_close_color;
public $menu_bg;
public $menu_color;
public $menu_subtitle_color;
public $menu_hbg;
public $menu_hcolor;
public $menu_subtitle_hcolor;
public $shadow_size;
public $shadow_opacity;
public function getFormTitle()
{
return $this->l('Menu settings', 'ArContactUsMenuConfigAbstract');
}
public function attributeDefaults()
{
return array(
'menu_size' => 'large',
'menu_width' => '300',
'item_style' => 'rounded',
'sidebar_animation' => 'elastic',
'popup_animation' => 'fadeindown',
'items_animation' => 'downtoup',
'menu_style' => 0,
'item_border_style' => 'none',
'item_border_color' => '#dddddd',
'menu_header_on' => '',
'menu_header' => 'How would you like to contact us?',
'header_close' => '',
'header_close_bg' => '#008749',
'header_close_color' => '#ffffff',
'menu_bg' => '#ffffff',
'menu_color' => '#3b3b3b',
'menu_subtitle_color' => '#787878',
'menu_subtitle_hcolor' => '#787878',
'menu_hbg' => '#f0f0f0',
'menu_hcolor' => '#3b3b3b',
'shadow_size' => '30',
'shadow_opacity' => '0.2'
);
}
}