CaMykS  1.0-20231201
Public Member Functions | Protected Attributes | List of all members
TinyMCEv3 Class Reference
Inheritance diagram for TinyMCEv3:
Input Plugin

Public Member Functions

 __construct ($path_type)
 
 initialise ($params=array())
 
 display ($ta_name='')
 
 set_contentInfos ($contentType='text', $contentValue='', $contentLg='')
 
 set_configInfos ($configType='default', $configValue='', $more=array())
 
 set_textareaInfos ($name='tinymceta', $sx=null, $sy=null)
 
 load_themeCSSFile ($pageid=null)
 
 load_fileManager ($fpath='', $furl='', $ftitle='')
 
 load_pageChooser ()
 
 get_configList ($mode='admin')
 
- Public Member Functions inherited from Input
 __construct ($name, $path_type)
 
 Input ($name, $path_type)
 
 display ()
 
 get_translation ($value, $data=null)
 
 set_selectedLayout ($layout='')
 
- Public Member Functions inherited from Plugin
 __construct ($name, $plugin_type, $path_type)
 
 get_version ()
 
 load_library ($library='')
 
 load_file ($file='')
 
 load_varFile ($file='')
 
 load_engineFile ($file='')
 
 get_engineFileURL ($file='', $path=false)
 
 get_fileURL ($file='', $path=null, $default='')
 
 get_varFileURL ($file='', $path=false, $default='')
 
 get_filePath ($file='')
 
 get_varFilePath ($file='')
 
 add_JSFile ($file)
 
 add_JSEngineFile ($file)
 
 add_JSExternFile ($file)
 
 add_JSScript ($script, $unique=false)
 
 add_JSPreScript ($script, $unique=false)
 
 add_JSWindowEventScript ($event, $script, $unique=false)
 
 add_JSLoadScript ($script, $unique=false)
 
 add_JSUnloadScript ($script, $unique=false)
 
 add_styleFile ($file, $media='', $condition='')
 
 add_styleScript ($css)
 
 add_styleIncludedFile ($file)
 
 add_StyleExternFile ($file, $media='', $condition='')
 
 set_RSSFeed ($title, $url)
 
 add_headerExtra ($content='')
 
 install ()
 
 uninstall ()
 
 is_installed ()
 
 update ($version, $more='')
 
 add_translation ($more='', $lg=null)
 
 get_languages ()
 
 execute_onCaMykSInitialise ()
 
 execute_onCaMykSPageLoad ()
 
 execute_onCaMykSBodyOpen ()
 
 execute_onCaMykSBodyClose ()
 
 execute_onCaMykSAdminPageLoad ()
 
 execute_onCaMykSAdminBodyOpen ()
 
 execute_onCaMykSAdminBodyClose ()
 
 execute_onCaMykSTerminate ()
 
 get_requestLink ($params=array())
 
 get_requestJSLink ($params=array())
 
 execute_request ()
 
 get_varFile ($file)
 

Protected Attributes

 $contentType = 'text'
 Content type (text or file). More...
 
 $contentValue = ''
 Content value. More...
 
 $contentLg = ''
 Content language. More...
 
 $configType = 'default'
 Editor configuration. More...
 
 $configValue = ''
 Editor specific configuration. More...
 
 $ta_name = 'tinymceta'
 Editor's name. More...
 
 $ta_sizex = '100%'
 Editor's horizontal size. More...
 
 $ta_sizey = '300px'
 Editor's vertical size. More...
 

Additional Inherited Members

- Public Attributes inherited from Input
 $title
 Input title. More...
 
 $params = array()
 Input parameters. More...
 
 $selected_layout = 'input.html.inc'
 Input layout to use. More...
 
- Public Attributes inherited from Plugin
 $name
 Plugin name. More...
 
 $version
 Plugin version. More...
 
 $active = false
 Plugin installation status. More...
 
 $plugin_package = ''
 Plugin package. More...
 
 $plugin_type
 Plugin type. More...
 
 $object_type
 Plugin type. More...
 
 $plugin_path
 Plugin path. More...
 
 $plugin_site_path
 Plugin site path (for element overwriting). More...
 
 $plugin_var_path
 Plugin var path. More...
 
 $plugin_url
 Plugin URL. More...
 
 $plugin_site_url
 Plugin site URL (for element overwriting). More...
 
 $plugin_var_url
 Plugin var URL. More...
 
 $path_type
 Plugin path type. More...
 
 $author_name
 Plugin author name. More...
 
 $author_mail
 Plugin author email. More...
 
 $author_group
 Plugin author group. More...
 
 $plugin_dependencies = array()
 Plugin dependencies. More...
 
- Protected Member Functions inherited from Plugin
 set_redirect ($time, $url='')
 
 add_meta ($name, $content, $method='name')
 
 add_toHtaccess ($content='')
 
 add_dependency ($plugin, $type, $version='1.0', $mandatory=false)
 
 set_dependencies ()
 
 register_asSharedObject ($name)
 
get_sharedObject ($name)
 
 register_asExtension ($plugin)
 
 get_registeredExtensions ()
 
 register_asCaMykSEventHandler ($event)
 

Detailed Description

TinyMCEv3 Input class.

Constructor & Destructor Documentation

◆ __construct()

TinyMCEv3::__construct (   $path_type)

Class constructor.

Parameters
string$path_type
Returns
void

Member Function Documentation

◆ initialise()

TinyMCEv3::initialise (   $params = array())

Initialise input.

Returns
void

Reimplemented from Input.

◆ display()

TinyMCEv3::display (   $ta_name = '')

Display input.

Parameters
string$ta_name
Returns
void

◆ set_contentInfos()

TinyMCEv3::set_contentInfos (   $contentType = 'text',
  $contentValue = '',
  $contentLg = '' 
)

Define content information.

Parameters
string$contentType
string$contentValue
string$contentLg
Returns
void

◆ set_configInfos()

TinyMCEv3::set_configInfos (   $configType = 'default',
  $configValue = '',
  $more = array() 
)

Define config information.

Parameters
string$configType
string$configValue
array$more
Returns
void

◆ set_textareaInfos()

TinyMCEv3::set_textareaInfos (   $name = 'tinymceta',
  $sx = null,
  $sy = null 
)

Define textarea information.

Parameters
string$name
string$sx
string$sy
Returns
void

◆ load_themeCSSFile()

TinyMCEv3::load_themeCSSFile (   $pageid = null)

Load page theme.

Parameters
integer$pageid
Returns
void

◆ load_fileManager()

TinyMCEv3::load_fileManager (   $fpath = '',
  $furl = '',
  $ftitle = '' 
)

Load filemanager input.

Parameters
string$fpath
string$furl
string$ftitle
Returns
void

◆ load_pageChooser()

TinyMCEv3::load_pageChooser ( )

Load pagechooser input.

Returns
void

◆ get_configList()

TinyMCEv3::get_configList (   $mode = 'admin')

Return selected config list.

Returns
array

Member Data Documentation

◆ $contentType

TinyMCEv3::$contentType = 'text'
protected

Content type (text or file).

var string $contentType

◆ $contentValue

TinyMCEv3::$contentValue = ''
protected

Content value.

var string $contentValue

◆ $contentLg

TinyMCEv3::$contentLg = ''
protected

Content language.

var string $contentLg

◆ $configType

TinyMCEv3::$configType = 'default'
protected

Editor configuration.

var string $configType

◆ $configValue

TinyMCEv3::$configValue = ''
protected

Editor specific configuration.

var string $configValue

◆ $ta_name

TinyMCEv3::$ta_name = 'tinymceta'
protected

Editor's name.

var string $ta_name

◆ $ta_sizex

TinyMCEv3::$ta_sizex = '100%'
protected

Editor's horizontal size.

var string $ta_sizex

◆ $ta_sizey

TinyMCEv3::$ta_sizey = '300px'
protected

Editor's vertical size.

var string $ta_sizey


The documentation for this class was generated from the following file: