Allowing users to make calls from their call logs
We're going to give your user a place to view their call log.
We will display a list of incoming calls and give them the option to call back on these numbers.
Getting ready
The complete source code for this recipe can be found in the Chapter9/Recipe4
folder in the source code for this book.
How to do it...
Now, let's build a section for our users to log in to using the following steps:
Update a file called
index.php
with the following content:<?php session_start(); include 'Services/Twilio.php'; require("system/jolt.php"); require("system/pdo.class.php"); require("system/functions.php"); $_GET['route'] = isset($_GET['route']) ? '/'.$_GET['route'] : '/'; $app = new Jolt('site',false); $app->option('source', 'config.ini'); #$pdo = Db::singleton(); $mysiteURL = $app->option('site.url'); $app->condition('signed_in', function () use ($app) { $app->redirect( $app->getBaseUri().'/login',!$app->store('user')); }); $app-...