Last active
November 9, 2018 08:21
-
-
Save zzfortezz/63786976101e419545d3ce84be4b6d19 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Retrieve the widget title. | |
* | |
* @since 1.0.0 | |
* | |
* @access public | |
* | |
* @return string Widget title. | |
*/ | |
public function get_title() { | |
return __( 'Addon Hello', 'addon_elementor' ); | |
} | |
/** | |
* Retrieve the widget icon. | |
* | |
* @since 1.0.0 | |
* | |
* @access public | |
* | |
* @return string Widget icon. | |
*/ | |
public function get_icon() { | |
return 'eicon-insert-image'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment