array formatContent(
array
$contentValues
)
|
|
Format content to display the image on the web page, using the image's properties edited by user at runtime. Overrides the same function of w3sContentManager
Parameters:
|
array |
$contentValues: |
The array with contents. |
API Tags:
| Return: | The array with contents formatted. |
| Access: | protected |
Redefinition of:
- w3sContentManager::formatContent()
- The default behaviour of the formatContent function is "Nothing to do", so the content array will be returned untouched .
string getDefaultValue(
)
|
|
Returns the default text for the flash content
API Tags:
Redefinition of:
- w3sContentManager::getDefaultValue()
- Returns the default text for the text content
void getInteractiveMenu(
)
|
|
API Tags:
Redefinition of:
- w3sContentManager::getInteractiveMenu()
- Returns the Interactive Menu used to manage the editor. This gives you a chance to add the reference to javascript editor which manages the content.
string renderMenu(
[array
$params = array()]
)
|
|
Renders the menu
Parameters:
|
array |
$params: |
- An array with two optional parameters: w3s_assigned_to The tag which the class is assigned w3s_assigned_class The name of the class |
API Tags:
| Return: | - The rendered menu |
| Access: | protected |
array saveParams(
string
$params
)
|
|
Generates an array similar to the one generated by the getParameterHolder()->getAll() function. It needs a serialized string similar to [Parameter Name][]=[Property name]=[Property value]&;
Parameters:
|
string |
$params: |
serialized string which must match the following rule: [Parameter Name A][]=[Property name]=[Property value]&[Parameter Name A][]=[Property name]=[Property value]&[Parameter Name B][]=[Property name]=[Property value]&... |
API Tags:
| Return: | The array with contents formatted. |
| Access: | protected |