library
8 years ago
front.php
8 years ago
media-template.php
8 years ago
meta.php
8 years ago
picker.php
8 years ago
settings.php
8 years ago
type-fonts.php
8 years ago
type.php
8 years ago
type-fonts.php
25 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Icon fonts handler |
| 4 | * |
| 5 | * @package Menu_Icons |
| 6 | * @author Dzikri Aziz <kvcrvt@gmail.com> |
| 7 | */ |
| 8 | |
| 9 | require_once dirname( __FILE__ ) . '/type.php'; |
| 10 | |
| 11 | /** |
| 12 | * Generic handler for icon fonts |
| 13 | * |
| 14 | */ |
| 15 | abstract class Menu_Icons_Type_Fonts extends Menu_Icons_Type { |
| 16 | /** |
| 17 | * Constructor |
| 18 | * |
| 19 | * @since 0.9.0 |
| 20 | */ |
| 21 | public function __construct() { |
| 22 | _deprecated_function( __CLASS__, '0.9.0', 'Icon_Picker_Type_Font' ); |
| 23 | } |
| 24 | } |
| 25 |