File: /var/www/html/wp-content/plugins/image-hover-effects-ultimate/Modules/Caption/Admin/Effects12.php
<?php
namespace OXI_IMAGE_HOVER_PLUGINS\Modules\Caption\Admin;
if (!defined('ABSPATH')) {
exit;
}
/**
* Description of Effects12
*
* @author biplo
*/
use OXI_IMAGE_HOVER_PLUGINS\Modules\Caption\Modules as Modules;
use OXI_IMAGE_HOVER_PLUGINS\Classes\Controls as Controls;
class Effects12 extends Modules {
public function register_effects() {
return $this->add_control(
'image_hover_effects', $this->style, [
'label' => esc_html__('Effects Direction', 'image-hover-effects-ultimate'),
'type' => Controls::SELECT,
'default' => '',
'options' => [
'oxi-image-flip-horizontal' => esc_html__('Flip Horizontal', 'image-hover-effects-ultimate'),
'oxi-image-flip-vertical' => esc_html__('Flip Vertical', 'image-hover-effects-ultimate'),
'oxi-image-flip-diagonal-1' => esc_html__('Flip Diagoanl One', 'image-hover-effects-ultimate'),
'oxi-image-flip-diagonal-2' => esc_html__('Flip Diagoanl Two', 'image-hover-effects-ultimate'),
],
'selector' => [
'{{WRAPPER}} .oxi-image-caption-hover' => '',
],
'simpledescription' => 'Allows you to Set Effects Direction.',
'description' => 'Allows you to Set Effects Direction.',
]
);
}
}