<?php
|
|
|
|
/**
|
|
* Plugin Name: Planist
|
|
* Plugin URI: https://planist.live
|
|
* Description: Planist Shortcode and Block
|
|
* Version: 1.0
|
|
* Author: Parsa Kafi
|
|
* Author URI: https://parsa.ws
|
|
*/
|
|
|
|
class Planist
|
|
{
|
|
function __construct()
|
|
{
|
|
add_shortcode('planist', [$this, 'shortcode']);
|
|
add_action('enqueue_block_editor_assets', [$this, 'gutenbergBlocks']);
|
|
}
|
|
|
|
function gutenbergBlocks()
|
|
{
|
|
wp_enqueue_style(
|
|
'planist-block-style',
|
|
plugins_url('/assets/css/block-style.css', __FILE__),
|
|
array(),
|
|
'1.0'
|
|
);
|
|
|
|
$assetFile = include(dirname(__FILE__) . '/assets/planist-block/build/index.asset.php');
|
|
wp_enqueue_script(
|
|
'planist-block-editor',
|
|
plugins_url('assets/planist-block/build/index.js', __FILE__),
|
|
$assetFile['dependencies'],
|
|
$assetFile['version']
|
|
);
|
|
|
|
$data = array();
|
|
|
|
wp_localize_script('planist-block-editor', 'planist', $data);
|
|
}
|
|
|
|
function shortcode($atts)
|
|
{
|
|
$atts = shortcode_atts(array(
|
|
'username' => '',
|
|
'duration' => ''
|
|
), $atts, 'planist');
|
|
|
|
if (empty($atts['username']))
|
|
return '';
|
|
|
|
return $this->iframe($atts['username'], $atts['duration']);
|
|
}
|
|
|
|
private function iframe($username, $duration)
|
|
{
|
|
$url = 'https://app.planist.fr/' . $username;
|
|
if (!empty($duration))
|
|
$url .= '/' . $duration;
|
|
|
|
$style = 'border: none;min-height: 500px;width: 100%;';
|
|
$style = apply_filters('planist_iframe_style', $style, $username, $duration);
|
|
|
|
return '<iframe src="' . $url . '" title="' . ucwords($username) . ' Booking Page" width="100%" height="100%" style="' . $style . '"></iframe>';
|
|
}
|
|
}
|
|
|
|
new Planist();
|