?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/caldera-forms/includes/cf-pro-client/classes/admin/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/caldera-forms/includes/cf-pro-client/classes

?? Viewing: tab.php

<?php


namespace calderawp\calderaforms\pro\admin;


/**
 * Class tab
 * @package calderawp\calderaforms\pro\admin
 */
class tab
{
	/**
	 * Path to index.html
	 *
	 * @since 1.0.0
	 *
	 * @var string
	 */
	protected $template_path;

	/**
	 * tab constructor.
	 *
	 * @since 1.0.0
	 *
	 * @param $template_path
	 */
	public function __construct($template_path)
	{
		$this->template_path = $template_path;
	}

	/**
	 * Add pro tab to admin
	 *
	 * @since 1.0.0
	 *
	 * @uses "caldera_forms_get_panel_extensions" filter
	 *
	 * @param array $panels
	 *
	 * @return array
	 */
	public function add_tab(array $panels = [])
	{
		$panels[ 'form_layout' ][ 'tabs' ][ 'cf-pro' ] = [
			'name' => __('Pro', 'caldera-forms'),
			'label' => __('Caldera Forms Pro Settings For This Form', 'caldera-forms'),
			'location' => 'lower',
			'actions' => [],
			'side_panel' => null,
			'canvas' => $this->template_path,
		];

		return $panels;
	}


}


??

??