Developer Documentation
-
General
-
Development
-
Applications
-
Plugins
-
Extensions
- Overview
- core/AchievementAction
- core/AdvertisementLocations
- core/Announcements
- core/BBCode
- core/Build
- core/BulkMail
- core/CommunityEnhancements
- core/ContactUs
- core/ContentModeratorPermissions
- core/ContentRouter
- core/CreateMenu
- core/Dashboard
- core/EditorLocations
- core/EditorMedia
- core/FileStorage
- core/FrontNavigation
- core/MobileNavigation
- core/GroupForm
- core/GroupLimits
- core/IncomingEmail
- core/IpAddresses
- core/LiveSearch
- core/MemberFilter
- core/MemberHistory
- core/MemberSync
- core/MetaData
- core/MFAArea
- core/ModCp
- core/ModCpMemberManagement
- core/ModeratorPermissions
- core/Notifications
- core/OutputPlugins
- core/OverviewStatistics
- core/Permissions
- core/Profile
- core/ProfileSteps
- core/RssImport
- core/Queue
- core/Sitemap
- core/StreamItems
- core/Uninstall
- nexus/Item
-
-
Framework Fundamentals
-
Nodes
-
Content Items
-
Comments
-
Reviews
-
-
Members & Authentication
-
Login Methods
-
-
Other Features
-
Notifications & Emails
-
Forms
-
Commerce
-
API
-
-
Invision Community 4.2
-
Invision Community 4.3
-
Invision Community 4.4
-
Invision Community 4.5
-
Invision Community 4.6
-
Invision Community 4.6.10
-
Legacy Documentation
-
4.2 and below: IPS Connect
-
4.2 and below: Login Handlers
-
Invision Community 4.3
-
Review Replies
Invision Community 4.3 introduces a new Reply to a Review feature. To support Review Replies, your Review class needs to define author_response in the column map. namespace IPS\myapp; class _MyClass extends \IPS\Content\Review { public static $databaseColumnMap = array( /* etc */ 'author_response' => 'author_response', ); } Additionally, you must add a Mediumtext column to your content items database table with the defined name from the columnMap. New Revi