*/ namespace ThemeAtelier\Darkify\Admin\Views; use ThemeAtelier\Darkify\Admin\Framework\Classes\Darkify; class License { /** * Create Option fields for the setting options. * * @param string $prefix Option setting key prefix. * @return void */ public static function options($prefix) { Darkify::createSection( $prefix, array( 'title' => esc_html__('LICENSE', 'darkify'), 'icon' => 'icofont-key', 'fields' => array( array( 'id' => 'license_key', 'type' => 'license', ), ), ), ); } }