File "Privacy_policy.php"

Full Path: /home/trinadezambia/public_html/democrm.trinadezambia-20260517144640/application/controllers/Privacy_policy.php
File size: 410 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

defined('BASEPATH') or exit('No direct script access allowed');

class Privacy_policy extends ClientsController
{
    public function index()
    {
        $data['policy'] = get_option('privacy_policy');
        $data['title']  = _l('privacy_policy') . ' - ' . get_option('companyname');
        $this->data($data);
        $this->view('privacy_policy');
        $this->layout();
    }
}