Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subception
/
wp-content
/
plugins
/
edge-core
/
lib
:
shortcode-interface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace EdgeCore\Lib; /** * Interface ShortcodeInterface * @package EdgeCore\Lib */ interface ShortcodeInterface { /** * Returns base for shortcode * @return string */ public function getBase(); /** * Maps shortcode to Visual Composer. Hooked on vc_before_init */ public function vcMap(); /** * Renders shortcodes HTML * * @param $atts array of shortcode params * @param $content string shortcode content * * @return string */ public function render( $atts, $content = null ); }