. * * @category Action * @package StatusNet * @author Zach Copley * @copyright 2009-2011 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } /** * Base class for group actions, similar to ProfileAction * * @category Action * @package StatusNet * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ * */ class GroupAction extends Action { function showProfileBlock() { $block = new GroupProfileBlock($this, $this->group); $block->show(); } }