aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/template/context.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-05-13 10:49:53 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2011-05-14 15:30:20 -0400
commitb04f0a5f70ed79d45e254d7b6db61f6fc1f484f5 (patch)
tree82c4975207acb1812e3bb048ec48abdf0c20264f /phpBB/includes/template/context.php
parentbe8fc0864c005e7240ba28b24de317a969c7f9b6 (diff)
downloadforums-b04f0a5f70ed79d45e254d7b6db61f6fc1f484f5.tar
forums-b04f0a5f70ed79d45e254d7b6db61f6fc1f484f5.tar.gz
forums-b04f0a5f70ed79d45e254d7b6db61f6fc1f484f5.tar.bz2
forums-b04f0a5f70ed79d45e254d7b6db61f6fc1f484f5.tar.xz
forums-b04f0a5f70ed79d45e254d7b6db61f6fc1f484f5.zip
[feature/template-engine] Delete @access everywhere.
Access specification in php 5 is done directly on functions/properties. PHPBB3-9726
Diffstat (limited to 'phpBB/includes/template/context.php')
-rw-r--r--phpBB/includes/template/context.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/phpBB/includes/template/context.php b/phpBB/includes/template/context.php
index 73f1373655..3c0dceb981 100644
--- a/phpBB/includes/template/context.php
+++ b/phpBB/includes/template/context.php
@@ -45,7 +45,6 @@ class phpbb_template_context
/**
* Clears template data set.
- * @access public
*/
public function clear()
{
@@ -55,7 +54,6 @@ class phpbb_template_context
/**
* Assign a single variable to a single key
- * @access public
* @param string $varname Variable name
* @param string $varval Value to assign to variable
*/
@@ -74,7 +72,6 @@ class phpbb_template_context
*
* Note: modifying returned array will affect data stored in the context.
*
- * @access public
* @return array template data
*/
public function get_data_ref()
@@ -93,7 +90,6 @@ class phpbb_template_context
*
* Note: modifying returned array will affect data stored in the context.
*
- * @access public
* @return array template data
*/
public function get_root_ref()
@@ -104,7 +100,6 @@ class phpbb_template_context
/**
* Assign key variable pairs from an array to a specified block
- * @access public
* @param string $blockname Name of block to assign $vararray to
* @param array $vararray A hash of variable name => value pairs
*/
@@ -197,7 +192,6 @@ class phpbb_template_context
* and inserting at position 1 will result in this array: array(first positioned array, vararray, following vars)
*
* @return bool false on error, true on success
- * @access public
*/
public function alter_block_array($blockname, array $vararray, $key = false, $mode = 'insert')
{
@@ -315,7 +309,6 @@ class phpbb_template_context
/**
* Reset/empty complete block
- * @access public
* @param string $blockname Name of block to destroy
*/
public function destroy_block_vars($blockname)