45 lines
825 B
PHP
45 lines
825 B
PHP
<?php
|
|
/**
|
|
* Creative Elements - live Theme & Page Builder
|
|
*
|
|
* @author WebshopWorks, Elementor
|
|
* @copyright 2019-2023 WebshopWorks.com & Elementor.com
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html
|
|
*/
|
|
|
|
namespace CE;
|
|
|
|
defined('_PS_VERSION_') or exit;
|
|
|
|
abstract class BaseIconFont
|
|
{
|
|
/**
|
|
* Get Icon type.
|
|
*
|
|
* Retrieve the icon type.
|
|
*
|
|
* @abstract
|
|
*/
|
|
abstract public function getType();
|
|
|
|
/**
|
|
* Enqueue Icon scripts and styles.
|
|
*
|
|
* Used to register and enqueue custom scripts and styles used by the Icon.
|
|
*/
|
|
abstract public function enqueue();
|
|
|
|
/**
|
|
* get_css_prefix
|
|
*
|
|
* @return string
|
|
*/
|
|
abstract public function getCssPrefix();
|
|
|
|
abstract public function getIcons();
|
|
|
|
public function __construct()
|
|
{
|
|
}
|
|
}
|