/** * Profile editor * * @package tools */ class toolProfileEditor implements LAMTool { /** * Returns the name of the tool. * * @return string name */ function getName() { return _("Profile editor"); } /** * returns a description text for the tool. * * @return string description */ function getDescription() { return _("Here you can manage your account profiles."); } /** * Returns a link to the tool page (relative to templates/). * * @return string link */ function getLink() { return "profedit/profilemain.php"; } /** * Returns if the tool requires write access to LDAP. * * @return boolean true if write access is needed */ function getRequiresWriteAccess() { return true; } /** * Returns if the tool requires password change rights. * * @return boolean true if password change rights are needed */ function getRequiresPasswordChangeRights() { return true; } /** * Returns the link to the tool image (relative to graphics/) * * @return string image URL */ function getImageLink() { return 'edit.png'; } /** * Returns the prefered position of this tool on the tools page. * The position may be between 0 and 1000. 0 is the top position. * * @return int prefered position */ function getPosition() { return 100; } } |