|
Revision 1248, 1.4 kB
(checked in by diegoramirez, 1 year ago)
|
Units to mod
|
| Line | |
|---|
| 1 |
Elgg community plug-in |
|---|
| 2 |
Curverider <info@curverider.co.uk> |
|---|
| 3 |
Initial concept: Dave Tosh and Ben Werdmuller |
|---|
| 4 |
Programming and development: Dave Tosh, Ben Werdmuller, Sven Edge and Diego RamÃrez |
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
To use, the 'community' folder must sit in the 'mod' folder of your Elgg installation. |
|---|
| 8 |
|
|---|
| 9 |
To go in .htaccess: |
|---|
| 10 |
|
|---|
| 11 |
RewriteRule ^([A-Za-z0-9]+)\/communities\/?$ mod/community/index.php?friends_name=$1 |
|---|
| 12 |
RewriteRule ^([A-Za-z0-9]+)\/communities\/owned$ mod/community/owned.php?profile_name=$1 |
|---|
| 13 |
RewriteRule ^([A-Za-z0-9]+)\/communities\/new$ mod/community/new.php?profile_name=$1 |
|---|
| 14 |
RewriteRule ^([A-Za-z0-9]+)\/community\/delete$ mod/community/index.php?profile_name=$1&action=community:delete |
|---|
| 15 |
RewriteRule ^([A-Za-z0-9]+)\/community\/requests$ mod/community/requests.php?profile_name=$1 |
|---|
| 16 |
RewriteRule ^([A-Za-z0-9]+)\/community\/requests\/aprove\/([0-9]+)$ mod/community/requests.php?profile_name=$1&action=community:approve:request&request_id=$2 |
|---|
| 17 |
RewriteRule ^([A-Za-z0-9]+)\/community\/requests\/decline\/([0-9]+)$ mod/community/requests.php?profile_name=$1&action=community:decline:request&request_id=$2 |
|---|
| 18 |
RewriteRule ^([A-Za-z0-9]+)\/community\/members$ mod/community/members.php?profile_name=$1 |
|---|
| 19 |
RewriteRule ^([A-Za-z0-9]+)\/community\/separate\/([0-9]+)$ mod/community/members.php?profile_name=$1&friend_id=$2&action=separate |
|---|
| 20 |
RewriteRule ^community\/([0-9]+)\/?$ mod/communities/community.php?community_id=$1 |
|---|