This project is under active development.

SMS Panel

Description

SMS Panel is a module suite to provide SMS Framework with a central management panel.

Disclaimer

This module is in an early development stage, It is not intended to be used in production.

Requirements

Temporarily it's required to use a patched clone of SMS Framework 1.x branch until the 2.x branch gets available and stable. Also see: #442748: New hook system with hook_sms() for 2.x

Installation

As a minimum you might want to enable the SMS Panel API and its UI.

Dependencies

Submodules

  • SMS Panel API
  • SMS Panel UI
  • SMS Panel VIews integration
  • SMS Panel Advanced Compose (bulk)
    • Batch Dispatcher
    • Cron Dispatcher
    • Scheduled Dispatcher
  • SMS Panel Message Templates (not available yet)

Searchsense

Description

A module suite providing extensible, configurable and fast typeahead ability for the core search. Also it might be used as an API.

Disclaimer

This module is in an early development stage, It is not intended to be used in production.

Installation

  • Enable the module as usual.
  • Goto admin/settings/search/autocomplete & configure your sense!

Develop a Searchsense Provider

  • If required, Alter Searchsense's administration form by implementing hook_form_searchsense_admin_alter().
  • If required, attach proper form validation and submission callbacks.
  • Implement hook_searchsense() and return a provider-id-keyed array of keyed suggestions, if you want to extend its suggestions.
  • Implement hook_searchsense_alter() if you're interested in modifying the suggestions.
  • Checkout submodules for code examples.

API usage example

<?php
/**
* Implements hook_searchsense().
*/
function nodesense_searchsense($a1 = '', $a2 = '', $limit = 10) {
$matches = array();

if ($a1 && ($query = variable_get('nodesense_query', FALSE))) {
$results = db_query_range($query, $a1, 0, (int) $limit);
while ($result = db_fetch_object($results)) {

Search Redirect

Description

Skips search results page & redirects user to a specific page under configurable circumstances.

Iran.tc SMS Gateway

Description

Iran.tc SMS Gateway enables the smsframework to use Iran.tc service as a gateway.

Disclaimer

This module is in an early development stage, It is not intended to be used in production.

Requirements

  • A valid line number, username and password provided by Iran.tc.

Dependencies

Installation

  1. Install & enable SOAP Client.
    • Go to admin/settings/soapclient.
    • Under "Active SOAP Library" check the "nuSOAP" option.
    • Leave other options as default.
  2. Install and enable Iran.tc SMS gateway.
    • Go to admin/smsframework/gateways/irantc.
    • Fill the required fields by the credentials provided by Iran.tc.
    • Leave other fields as their defaults and save the configuration.
  3. If you wish to also be able to receive SMS messages:
    • Go to admin/smsframework/gateways/irantc.
    • Copy the URL under the Incoming SMS Settings section labeled Traffic Relay Gateway.

Recently Viewed

Description

The module tracks recently viewed nodes for both anonymous and authenticated users.
It provides an API function for others to get a list of recently viewed items and also defines a configurable recently viewed items block. You might want to make use of the recently_viewed_views submodule which provides a customised default View to benefit the endless flexibility of Views.

Also if Ubercart module suite is enabled, there's another useful submodule named recently_viewed_products which adds an another default view for UC specific products with the same said functionality.

Disclaimer

This module is in an early development stage, It is not intended to be used in production.

Important notice

Since the module initiates sessions, it's incompatible with Varnish Cache.
In future releases there might be an option to work with cookies instead of sessions addressing this issue.

Recommended modules

Here is a list of recommended modules to be used with "Recently viewed views integration" and "Recently viewed products" submodules:

Pages

Subscribe with RSS Subscribe to RSS - Under active development