. * * @category Personal * @package Laconica * @author Evan Prodromou * @author Sarven Capadisli * @copyright 2008-2009 Control Yourself, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://laconi.ca/ */ if (!defined('LACONICA')) { exit(1); } /** * Base class for user profile page * * @category Personal * @package Laconica * @author Evan Prodromou * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://laconi.ca/ */ class PersonalAction extends Action { var $user = null; function isReadOnly($args) { return true; } function handle($args) { parent::handle($args); } }