Toggle navigation
Home
Hosting
Community
Developers
Github
Web Services (API)
Documentation
References
Report Issue
Download
Installer
Virtual Machine Image
Components
Themes
Member Area
Login
Register
Search
Tired of Facebook, Instagram & Twitter selling your data?
You reached the right place
Create your own social network website!
Newsfeed Page
Newsfeed page helps you to find what's happening on the network.
MOBILE FRIENDLY
Mobile friendly design allows your users to browse social network on their mobile devices.
USER PROFILE
PERSONAL WALL, FRIENDS LIST, PHOTO ALBUMS, PROFILE COVER, USER INFORMATION AND MUCH MORE.
Groups
Groups make it easy to communicate with friends , family or your work mates
Administration Panel
Using administration panel you can manage your website pages, components and users
Wall getPublicPosts method parameter override
You can ovveride default wall method search / listing posts paramter for method `OssnWall->getPublicPosts()` Working example is OssnBlock component that trims posts from newsfeed if user is blocked. ~~~ <?php function my_component_init(){ ossn_add_hook('wall', 'getPublicPosts', 'my_component_hook'); } function my_component_hook($hook, $type, $params, $extra_params){ //you may alter $params , it contain order_by, etc. //$extra_params contain $extra_params['user'] which is OssnUser instance // it also contain $extra_params['friend_guids'] which are friends guids of user. error_log(print_r($params, true)); error_log(print_r($extra_params, true)); return $params; } ossn_register_callback('ossn', 'init', 'my_component_init'); ~~~
Quick Access
Dashboard
Wall getAllPosts method parameter override
Wall getPublicPosts method parameter override
Wall getFriendsPosts method parameter override
Wall GetUserPosts method parameter override
Wall GetPostByOwner method parameter override
Wall template parameter
Wall template view
Wall post view menu