Available on: Newspaper V11+
This api call is used to update only one of the parameters of an existing module.
Usage:
<?php td_api_module::update_key( $id, $key, $value ) ?>
Parameters:
$id (string) (required)
- the module id – has to match with one of the modules which are already registered in the theme
$key (string) (required)
- parameter to be replaced, in the following table you can see all parameters but only one can be used because via this method you can update only one parameter:
Key name
|
Type
|
Description
|
---|---|---|
file | string | the path of the module template file |
text | string | the module title, appears in Theme Panel and on Article List settings area |
img | string | the path for the icon used to represent the module |
used_on_blocks | array | the blocks on which this module is used |
excerpt_title | integer | title excerpt length |
excerpt_content | integer | content excerpt length |
enabled_on_more_articles_box | boolean | show the module in the more articles box in panel -> post settings -> more articles box |
enabled_on_loops | boolean | show the module in panel on loops |
uses_columns | boolean | enable/disable column use on this block, if it’s disabled it will display only one module on each row |
category_label | boolean | show the module in panel -> block_settings -> category label |
class | string | classes added on the module wrapper |
$value (mixed) (required)
- the data which will replace the parameter existing one, it’s type depends on the selected parameter.
Examples:
In the following example we’ll update the existing Flex Module 1 , the ‘file’ key data will be replaced, you can see how the code looks on plugin, you have to modify the file path to match with the plugin current folder, we use the variables which were introduced in the Plugin Method section, ex:
td_api_module::update_key('td_module_flex_1', 'file', $this->plugin_path . '/includes/modules/td_module_flex_1.php');