Use a third-party CSS or JS Framework, a self-hosted service like a CRM, or a third-party service with the site.

LiveDocx

Overview
This module integrates with the livedocx

Send email multiple friends at the same time with Custom module

Step 1.) Create Module file like: yourmodule.info

name = "yourmodule module"
description = "Send Emails for multiple friends module"
core = 7.x
files[] = yourmodule.module

Step 2) Create module file like: yourmodule.module

<?php
function yourmodule_menu() {
$items = array();
$items['sendemail'] = array(
'description' =>'Provide invite form',
'page callback' =>'drupal_get_form',
'page arguments' =>array('yourmodule_form'),
'access callback' => TRUE

);
return $items;
}

function yourmodule_form($form,&$form_submit) {
$form['title'] = array(
//'#title' => 'email',
'#type' => 'textfield',
//'#name' =>'text1',
'#attributes' =>array('placeholder' => t('Enter Your E-mail address')),
);
$form['title1'] = array(
//'#title' => 'email1',
'#type' => 'textfield',
// '#name' =>'text2',
'#attributes' =>array('placeholder' => t('Enter Your E-mail address')),
);
$form['title2'] = array(
'#type' => 'textfield',
// '#name' =>'text3',
'#attributes' =>array('placeholder' => t('Enter Your E-mail address')),
);
$form['title3'] = array(
'#type' => 'textfield',
//'#name' =>'text4',
'#attributes' =>array('placeholder' => t('Enter Your E-mail address')),
);
$form['submit'] = array(
'#type' => 'submit',
'#value' =>'send invites',

);
return $form;

Vebra Import

Imports properties from the Vebra Live estate agent software and converts them to nodes

Private Innovation

One of the main reasons to use Drupal is to minimize how much custom code needs to be maintained for a website. Every unique problem can be decomposed into the same problems that everyone has.

Mobile AugmentedReality Communication

This module is primarily for use with the iOS Augmented Reality Framework PRAugmentedReality (see below)

It is also part of a soon-to-come distribution.

Features

It provides a custom resource for Drupal Services and serves 3 purposes:

  1. Find relevant data for the calling device
  2. Filter the data leaving only a few specified fields
  3. Send back the data to the calling device in a mobile-friendly format

Relevant = containing geolocation data & updated since last check
Specified fields = Listed by name in module. Optionally provides you with a way to add your own fields.
Mobile-friendly format = No fancy array nesting and bloat data

PRAugmentedReality iOS framework

In summary, the PRAugmentedReality iOS framework allows developers to instantly turn their mobile projects into an interactive location aware app.
It provides:
- An Augmented reality view out-of-the-box
- Customizable AR Overlays
- Customizable Map Pins
- Simple and efficient Data Storage system
- Communication with this module for simple creation of content on a site

Configuration

Configure user permissions in Administration > People > Permissions.

Pages

Subscribe with RSS Subscribe to RSS - Integrations