File "skills.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/happy-elementor-addons/wpml/skills.php
File
size: 776 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
/**
* Skills integration
*/
namespace Happy_Addons\Elementor;
defined( 'ABSPATH' ) || die();
class WPML_Skills extends \WPML_Elementor_Module_With_Items {
/**
* @return string
*/
public function get_items_field() {
return 'skills';
}
/**
* @return array
*/
public function get_fields() {
return ['name'];
}
/**
* @param string $field
*
* @return string
*/
protected function get_title( $field ) {
switch ( $field ) {
case 'name':
return __( 'Skills: Skill Name', 'happy-elementor-addons' );
default:
return '';
}
}
/**
* @param string $field
*
* @return string
*/
protected function get_editor_type( $field ) {
switch ( $field ) {
case 'name':
return 'LINE';
default:
return '';
}
}
}