summaryrefslogtreecommitdiff
path: root/classes/User_group.php
AgeCommit message (Collapse)Author
2009-11-18Consolidate group creation into static function in User_groupEric Helgeson
2009-11-08Restructure theme.php to define a class ThemeEvan Prodromou
For various reasons, it's nicer to have a class for theme-file paths and such. So, I've rewritten the code for determining the locations of theme files to be more OOPy. I changed all the uses of the two functions in the module (theme_file and theme_path) to use Theme::file and Theme::path respectively. I've also removed the code in common.php that require's the module; using a class means we can autoload it instead.
2009-08-21Merge branch '0.8.x' into 0.9.xEvan Prodromou
Conflicts: actions/updateprofile.php actions/userauthorization.php classes/User_group.php index.php install.php lib/accountsettingsaction.php lib/logingroupnav.php
2009-08-21can set group desc limit to unlimited without resetting global limitEvan Prodromou
2009-08-21allow configurable length for user group descriptionEvan Prodromou
2009-08-21data classes allow >140c in user group descriptionsEvan Prodromou
2009-08-07Implemented the list_all and list groups API methods as defined at ↵Craig Andrews
http://laconi.ca/trac/wiki/ProposedGroupsAPI Made the Autocomplete plugin also autocomplete groups
2009-07-15use quote identifiers on the user tableBrenda Wallace
2009-06-29show section with admins in sidebar of groupEvan Prodromou
2009-06-25break up big inbox queries into lots of small onesEvan Prodromou
2009-06-17Add design_id to User_groupZach Copley
2009-06-14Link and distribute notices tagged for a group aliasEvan Prodromou
Correctly link and distribute notices tagged for a group alias. Added a helper function, getForNickname(), to User_group, to make it easier to get a group by its nickname or aliases.
2009-06-14Code for adding and saving group aliasesEvan Prodromou
Added code to add and save group aliases. Like tags, aliases are free-texted in to the group admin page. configurable max number of aliases, default is three.
2009-06-14Allow users to be unblocked from a groupEvan Prodromou
List users who are blocked from joining a group. Add a form to let them be unblocked. Add an action that removes the block. Includes changes to group and groupblock classes.
2009-06-14The rest of the things necessary to make group block workEvan Prodromou
Link to the group block form. Hide join button if the current user is blocked.
2009-06-08Merge branch '0.7.x' into 0.8.xEvan Prodromou
Conflicts: classes/Notice.php classes/Profile.php lib/common.php lib/util.php scripts/getvaliddaemons.php scripts/stopdaemons.sh
2009-05-29Ticket #1567 - Change max_id to return notices <= ID instead of < IDZach Copley
2009-05-29Ticket #1567 - API: Change before_id parameter to max_idZach Copley
2009-05-22some class files had x bit setEvan Prodromou
2009-05-01Make user group stream use IDsEvan Prodromou
2009-02-06Move common_avatar_* functions to AvatarEvan Prodromou
Moved the common_avatar_* functions to the Avatar class. Typically either as methods on the object or as static methods. Replaced all the uses of the functions in other modules.
2009-02-04Fixed #1134; Consolidated image scaling functions.Sean Murphy
2009-02-04Fix for #1057; group logo transparecy (and pixilation)Sean Murphy
2009-02-01Fixes #1088: Show number of group members. Unlike the bugreport requested, ↵Adrian Lang
the stats are displayed similar to userstream stats in a section in the sidebar. Additionaly, I removed a redundant notnull if check in ShowgroupAction->showMembers, fixed a SQL error in User_group->getMembers when no limit is passed, removed return value storing of void function and added an usage of Profile->getBestName.
2009-01-28whitespace in User_groupEvan Prodromou
2009-01-23Upload logos for groupsEvan Prodromou
2009-01-23Remove require_once for Memcached_DBObject from new classesEvan Prodromou
2009-01-21Method for user groups to get a list of membersEvan Prodromou
2009-01-21First pass at a group home pageEvan Prodromou
This is the first pass at a group home page.
2009-01-13Generate new DB_DataObject classes for group tablesEvan Prodromou