aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/groupposition/interface.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-07-14 16:51:46 -0400
committerMarc Alexander <admin@m-a-styles.de>2013-07-14 16:51:46 -0400
commitbc6122b64ffb5c13c26991f78346fdc7dee6f9f0 (patch)
tree31673423cd6ab751bc8b102c97e89a182a94e219 /phpBB/includes/groupposition/interface.php
parent79dd44061bbfeab64dd2ff7b40541612c219c33c (diff)
parent1891e24ea6f5b8d5944535479182e70119b2979f (diff)
downloadforums-bc6122b64ffb5c13c26991f78346fdc7dee6f9f0.tar
forums-bc6122b64ffb5c13c26991f78346fdc7dee6f9f0.tar.gz
forums-bc6122b64ffb5c13c26991f78346fdc7dee6f9f0.tar.bz2
forums-bc6122b64ffb5c13c26991f78346fdc7dee6f9f0.tar.xz
forums-bc6122b64ffb5c13c26991f78346fdc7dee6f9f0.zip
Merge branch 'develop' of https://github.com/phpbb/phpbb3 into ticket/11531
Diffstat (limited to 'phpBB/includes/groupposition/interface.php')
-rw-r--r--phpBB/includes/groupposition/interface.php84
1 files changed, 0 insertions, 84 deletions
diff --git a/phpBB/includes/groupposition/interface.php b/phpBB/includes/groupposition/interface.php
deleted file mode 100644
index eacc04e1a4..0000000000
--- a/phpBB/includes/groupposition/interface.php
+++ /dev/null
@@ -1,84 +0,0 @@
-<?php
-/**
-*
-* @package phpBB3
-* @copyright (c) 2012 phpBB Group
-* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
-*
-*/
-
-/**
-* @ignore
-*/
-if (!defined('IN_PHPBB'))
-{
- exit;
-}
-
-/**
-* Interface to manage group positions in various places of phpbb
-*
-* The interface provides simple methods to add, delete and move a group
-*
-* @package phpBB3
-*/
-interface phpbb_groupposition_interface
-{
- /**
- * Returns the value for a given group, if the group exists.
- * @param int $group_id group_id of the group to be selected
- * @return int position of the group
- */
- public function get_group_value($group_id);
-
- /**
- * Get number of groups displayed
- *
- * @return int value of the last item displayed
- */
- public function get_group_count();
-
- /**
- * Addes a group by group_id
- *
- * @param int $group_id group_id of the group to be added
- * @return bool True if the group was added successfully
- */
- public function add_group($group_id);
-
- /**
- * Deletes a group by group_id
- *
- * @param int $group_id group_id of the group to be deleted
- * @param bool $skip_group Skip setting the value for this group, to save the query, when you need to update it anyway.
- * @return bool True if the group was deleted successfully
- */
- public function delete_group($group_id, $skip_group = false);
-
- /**
- * Moves a group up by group_id
- *
- * @param int $group_id group_id of the group to be moved
- * @return bool True if the group was moved successfully
- */
- public function move_up($group_id);
-
- /**
- * Moves a group down by group_id
- *
- * @param int $group_id group_id of the group to be moved
- * @return bool True if the group was moved successfully
- */
- public function move_down($group_id);
-
- /**
- * Moves a group up/down
- *
- * @param int $group_id group_id of the group to be moved
- * @param int $delta number of steps:
- * - positive = move up
- * - negative = move down
- * @return bool True if the group was moved successfully
- */
- public function move($group_id, $delta);
-}