File: /var/www/html/wp-content/plugins/image-hover-effects-ultimate/Modules/Caption/Admin/Effects17.php
<?php
namespace OXI_IMAGE_HOVER_PLUGINS\Modules\Caption\Admin;
if (!defined('ABSPATH')) {
exit;
}
/**
* Description of Effects17
*
* @author biplo
*/
use OXI_IMAGE_HOVER_PLUGINS\Modules\Caption\Modules as Modules;
use OXI_IMAGE_HOVER_PLUGINS\Classes\Controls as Controls;
class Effects17 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-parallax-up' => esc_html__('Parallax Up', 'image-hover-effects-ultimate'),
'oxi-image-parallax-down' => esc_html__('Parallax Down', 'image-hover-effects-ultimate'),
'oxi-image-parallax-left' => esc_html__('Parallax Left', 'image-hover-effects-ultimate'),
'oxi-image-parallax-right' => esc_html__('Parallax Right', 'image-hover-effects-ultimate'),
],
'selector' => [
'{{WRAPPER}} .oxi-image-caption-hover' => '',
],
'simpledescription' => 'Allows you to Set Effects Direction.',
'description' => 'Allows you to Set Effects Direction.',
]
);
}
}