aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/template/template.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-04-15 18:18:32 +0200
committerMarc Alexander <admin@m-a-styles.de>2017-04-15 18:18:32 +0200
commit269150ed40d8cf42c2b8d755191b15229dc170c2 (patch)
tree7be8527b0d529748c53abf2f1fadf22c05626625 /phpBB/phpbb/template/template.php
parent24f9a4165463d9a546c9868cb352c0283d976c27 (diff)
parent136c74bd1c3d2ef1f22055d9bb14e6f524d41433 (diff)
downloadforums-269150ed40d8cf42c2b8d755191b15229dc170c2.tar
forums-269150ed40d8cf42c2b8d755191b15229dc170c2.tar.gz
forums-269150ed40d8cf42c2b8d755191b15229dc170c2.tar.bz2
forums-269150ed40d8cf42c2b8d755191b15229dc170c2.tar.xz
forums-269150ed40d8cf42c2b8d755191b15229dc170c2.zip
Merge pull request #4612 from javiexin/ticket/14950
[ticket/14950] Add possibility to delete a template block
Diffstat (limited to 'phpBB/phpbb/template/template.php')
-rw-r--r--phpBB/phpbb/template/template.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/phpbb/template/template.php b/phpBB/phpbb/template/template.php
index 9e3d658ca8..d1ec442e9a 100644
--- a/phpBB/phpbb/template/template.php
+++ b/phpBB/phpbb/template/template.php
@@ -160,10 +160,11 @@ interface template
* If key is false the position is set to 0
* If key is true the position is set to the last entry
*
- * @param string $mode Mode to execute (valid modes are 'insert' and 'change')
+ * @param string $mode Mode to execute (valid modes are 'insert', 'change' and 'delete')
*
* If insert, the vararray is inserted at the given position (position counting from zero).
* If change, the current block gets merged with the vararray (resulting in new \key/value pairs be added and existing keys be replaced by the new \value).
+ * If delete, the vararray is ignored, and the block at the given position (counting from zero) is removed.
*
* Since counting begins by zero, inserting at the last position will result in this array: array(vararray, last positioned array)
* and inserting at position 1 will result in this array: array(first positioned array, vararray, following vars)