-
Welcome
-
Client Services
-
Getting Started
- First Login
- Setting up your menu
- Setting your default application
- Using The Block Manager
- Getting the look right
- Giving your staff access
-
Community in the Cloud
-
Migrating From Another Platform
-
Members and Groups
-
Member Functions
-
Staff and Moderation
-
Security and Rules
-
Promotion
-
Monetization
-
Community Enhancements
-
How to use Invision Community
-
Managing Your Community
-
Content Discovery
-
File Management
-
Member Preferences and Features
-
-
Community Core
-
Forums
-
Basics
-
Settings
-
Tips & Case Studies
-
-
Gallery
-
Basics
-
Settings
-
Tips & Case Studies
-
-
Downloads
-
Basics
-
Settings
-
Tips & Case Studies
-
-
Blog
-
Basics
-
Settings
-
Tips & Case Studies
-
-
Events
-
Basics
-
Settings
-
Tips & Case Studies
-
-
Pages
-
Core Concepts
-
Basics
-
Basic Tutorial: Building a recipe section
-
-
Advanced Tutorial: Recreating the "Release Notes" section
-
Tips & Case Studies
-
Design
-
-
Commerce
-
Getting The Basics
-
Products & Purchases
-
Providing Support
-
-
Themes and Customizations
-
Getting Started with Themes
-
Advanced Theming
-
Languages and Localization
- Introduction to languages
- Installing a ready-made language pack
- Setting the default language
- Creating a new language pack
- Translating using the visual language editor
- Translating using the standard editor
- Plural phrases
- Replacements in phrases
- Exporting a language pack you have created
- Changing date formats
-
Editor and Emoticons
-
Tips & Tricks
-
Template syntax
-
Javascript Framework
-
Introduction to the framework
-
Using UI widgets
- Introduction
- ips.ui.alert
- ips.ui.autoCheck
- ips.ui.autoComplete
- ips.ui.captcha
- ips.ui.chart
- ips.ui.dialog
- ips.ui.flashMsg
- ips.ui.hovercard
- ips.ui.infinitescroll
- ips.ui.lightbox
- ips.ui.menu
- ips.ui.pageAction
- ips.ui.pagination
- ips.ui.rating
- ips.ui.grid
- ips.ui.sideMenu
- ips.ui.spoiler
- ips.ui.stack
- ips.ui.sticky
- ips.ui.tooltip
- ips.ui.truncate
- ips.ui.selectTree
- ips.ui.tabbar
-
Using utility modules
-
-
CSS Framework
-
Sidebar and Widgets
-
-
Advanced Options
-
Classic Installation / Server Management
-
Configuration Options
-
IPS Connect
-
-
Other
Using utility modules
-
ips.utils.position
Description Dealing with element positioning - getting current positions, working out new positions, and so on - is a common task in a web application such as IPS4. This utility aims to make that easier by providing some methods to do the calculations for you. Methods object getElemPosition( mixed elem ) Returns various positioning information for the provided element. elem DOM element or jQuery object containing the element to work with Returned object: -
ips.utils.time
Description The time utility provides methods for working with timestamps. Methods string readable( number timestamp ) Returns the time as an approximate relative string, e.g. 8 hours ago, 2 days ago, Just now. timestamp UNIX timestamp to use to generate the time string boolean isDST() Determines whether the user is currently in daylight savings (DST). boolean isValidDateObj( mixed date ) Determines whether the provided date i -
ips.utils.url
Description The URL utility makes it easier to work with URLs by returning comprehenive information about a URL you supply, including query parameters, protocol, domain and more. The URL utility is a wrapper around the parseUri library by Steven Levithan. Example ips.utils.url.getParam('page', 'http://www.test.com/index.php?section=example&page=about'); // -> about Methods string getParam( string param, string url ) Returns the value of the paramet -
ips.utils.cookie
Description This utility provides methods for working with cookies in IPS4. It deals with cookie prefixes and other setting behind the scenes so that you can interact with cookies without having to handle those aspects manually. Example ips.utils.cookie.set( 'myKey', 'Hello world', true ); // Sets a sticky cookie ips.utils.cookie.get( 'myKey' ); // -> Hello world ips.utils.cookie.unset( 'myKey' ); ips.utils.cookie.get( 'myKey' ); // -> undefined Methods -
ips.utils.db
Description Modern browsers provide a mechanism for storing persistent data directly on a user's computer, called localStorage. This utility exposes some methods for working with localStorage in IPS4. Example ips.utils.db.set( 'myCategory', 'myKey', 'Hello world' ); ips.utils.db.get( 'myCategory', 'myKey' ); // -> Hello world ips.utils.db.isEnabled(); // -> true ips.utils.db.removeByType( 'myCategory' ); // -> 1 Methods void set( string type, string