Your IP : 216.73.216.240


Current Path : /home/sunflowe/www2/j15/plugins/editors/jce/tiny_mce/plugins/iframe/classes/
Upload File :
Current File : /home/sunflowe/www2/j15/plugins/editors/jce/tiny_mce/plugins/iframe/classes/iframe.php

<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );

require_once( JCE_LIBRARIES .DS. 'classes' .DS. 'plugin.php' );
require_once( JCE_LIBRARIES .DS. 'classes' .DS. 'utils.php' );

class Iframe extends JContentEditorPlugin {
	
	var $version = '@@version@@';
	/**
	* Constructor activating the default information of the class
	*
	* @access	protected
	*/
	function __construct(){
		parent::__construct();
		
		$this->checkPlugin() or die( JError::raiseError( 403, JText::_( 'Access Forbidden' ) ) );
		
		// Set javascript file array
		$this->script( array( 
			'tiny_mce_popup', 
		), 'tiny_mce' );
		$this->script( array( 
			'mootools',
			'tiny_mce_utils',
			'jce',
			'plugin',
			'window'
		), 'libraries' );
		$this->script( array( 'iframe' ), 'plugins' );
		$this->css( array( 'plugin' ), 'libraries' );
		$this->css( array( 
			'window',
			'dialog'
		), 'skins' );
		$this->css( array( 'iframe' ), 'plugins' );
		$this->loadLanguages();
	}
	/**
	 * Returns a reference to a plugin object
	 *
	 * This method must be invoked as:
	 * 		<pre>  $advlink = &IFrame::getInstance();</pre>
	 *
	 * @access	public
	 * @return	JCE  The editor object.
	 * @since	1.5
	 */
	function &getInstance(){
		static $instance;

		if ( !is_object( $instance ) ){
			$instance = new Iframe();
		}
		return $instance;
	}
	function getDefaults()
	{
		$params = $this->getPluginParams();
		$ret = '';
		$defaults = array(
			'width'			=> 100,
			'height'		=> 100,
			'width_type'	=> 'pct',
			'height_type'	=> 'pct',
			'align'			=> 'default',
			'frameborder'	=> 0,
			'scrolling'		=> 'auto',
			'margin_top'	=> 'default',
			'margin_right'	=> 'default',
			'margin_bottom'	=> 'default',
			'margin_left'	=> 'default',
			'marginwidth'	=> '',
			'marginheight'	=> ''
		);
		
		foreach ($defaults as $k => $v) {
			$p = $params->get($k, $v);
			$p = is_int($p) ? $p : "'".$p."'";
			$ret .= "'".$k."':".$p.",";
		}
		return preg_replace('/,?$/', '', $ret);
	}
}