This commit is contained in:
sriramv 2020-12-01 12:13:44 +05:30
parent 3cf230660a
commit 0920e3aa9b
192 changed files with 3703 additions and 57 deletions

View File

@ -7,7 +7,7 @@
| Don't show ANY in production environments. Instead, let the system catch
| it and display a generic error message.
*/
ini_set('display_errors', '0');
ini_set('display_errors', '1');
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);
/*

View File

@ -33,7 +33,7 @@ class Email extends BaseConfig
*
* @var string
*/
public $protocol = 'mail';
public $protocol = 'smtp';
/**
* The server path to Sendmail.
@ -47,35 +47,35 @@ class Email extends BaseConfig
*
* @var string
*/
public $SMTPHost;
public $SMTPHost='smtp.googlemail.com';
/**
* SMTP Username
*
* @var string
*/
public $SMTPUser;
public $SMTPUser='celine.forworkinphp96@gmail.com';
/**
* SMTP Password
*
* @var string
*/
public $SMTPPass;
public $SMTPPass='phpmailer96';
/**
* SMTP Port
*
* @var integer
*/
public $SMTPPort = 25;
public $SMTPPort = 465;
/**
* SMTP Timeout (in seconds)
*
* @var integer
*/
public $SMTPTimeout = 5;
public $SMTPTimeout = 60;
/**
* Enable persistent SMTP connections
@ -89,7 +89,7 @@ class Email extends BaseConfig
*
* @var string
*/
public $SMTPCrypto = 'tls';
public $SMTPCrypto = 'ssl';
/**
* Enable word-wrap
@ -110,7 +110,7 @@ class Email extends BaseConfig
*
* @var string
*/
public $mailType = 'text';
public $mailType = 'html';
/**
* Character set (utf-8, iso-8859-1, etc.)

View File

@ -43,7 +43,9 @@ $routes->match(['get','post'],'donation_data','Dashboard::donation_data_upload')
$routes->match(['get','post'],'donor_register','My_controller::donor_register');
$routes->match(['get'],'fetch_donor_id','Dashboard::fetch_donor_id');
$routes->match(['get'],'fetch_cause_name','Dashboard::fetch_cause_name');
$routes->match(['get','post'],'add_donation_cause','Dashboard::add_donation_cause');
$routes->match(['get'],'htmlToPDF','PdfController::htmlToPDF');
// $routes->add('register','Donation::register');
// $routes->add('list','Donation::edit_view');
// $routes->add('store','Home::store');

View File

@ -6,6 +6,7 @@ use App\Models\Transaction_model;
use App\Models\Donation_data_model;
use App\Models\My_model;
use App\Models\Donation_cause;
use App\Models\Donor_model;
class Dashboard extends BaseController
{
@ -28,8 +29,8 @@ class Dashboard extends BaseController
return redirect()->to(base_url());
}
$name= session()->get('logged_user');
$data['userdata']=$this->dModel->getLoggedInUserData($name);
$id= session()->get('logged_user');
$data['userdata']=$this->dModel->getLoggedInUserData($id);
echo view('templates/header',$data);
echo view('dashboard');
echo view('templates/footer');
@ -49,7 +50,8 @@ class Dashboard extends BaseController
}
$name= session()->get('logged_user');
$data['donor']=$this->MyModel->fetch_donor_id();
//$data['donor']=$this->MyModel->fetch_donor_id();
//$data2['donor']=$this->MyModel->fetch_donor_id();
echo view('templates/header');
echo view('receipts');
echo view('templates/footer');
@ -59,6 +61,12 @@ class Dashboard extends BaseController
echo $this->MyModel->fetch_donor_id();
}
function fetch_cause_name()
{
echo $this->dcModel->fetch_cause_name();
}
public function generate_receipts()
@ -81,7 +89,8 @@ class Dashboard extends BaseController
];
$model->save($receiptData);
return redirect()->to(base_url().'/Dashboard');
return redirect()->to(base_url().'/Dashboard/last_receipt/');
}
public function all_receipt()
{
@ -120,6 +129,59 @@ class Dashboard extends BaseController
echo view('templates/footer');
}
function last_receipt()
{
// admin data
$dmodel = new Donor_model();
$id= session()->get('logged_user');
$admin_data=$dmodel->find($id);
// last receipt data
$receipt_data=$this->rModel->last_receipt();
//print_r($receipt_data);
foreach($receipt_data as $key){ $key['receipt_id']; $key['donor_id'];}
//donation cause
$causemodel = new Donation_cause();
$cause_id=$key['receipt_id'];
$cause_data=$causemodel->find($cause_id);
// donor data
$model = new My_model();
$donor_id=$key['donor_id'];
$Donor_data=$model->find($donor_id);
// array for receipt
$data= [ 'donordata'=>$Donor_data , 'admindata' =>$admin_data , 'receipt'=>$receipt_data ,'causedata'=>$cause_data ];
echo view('templates/header');
echo view('pdf_view',$data);
echo view('templates/footer');
}
function view_receipt($receiptid)
{
// admin data
$dmodel = new Donor_model();
$id= session()->get('logged_user');
$admin_data=$dmodel->find($id);
// receipt data
$rmodel = new Receipt_model();
$receipt_id=$receiptid;
$receipt_data=$rmodel->find($receipt_id);
$donorid = $receipt_data['donor_id'];
$causeid = $receipt_data['cause_name'];
// donation cause
$causemodel = new Donation_cause();
$cause_id=$causeid;
$cause_data=$causemodel->find($cause_id);
// donor data
$model = new My_model();
$donor_id=$donorid;
$Donor_data=$model->find($donor_id);
// array for receipt
$data= [ 'donordata'=>$Donor_data , 'admindata' =>$admin_data , 'receipt'=>$receipt_data , 'causedata'=>$cause_data];
echo view('templates/header');
echo view('view_receipt',$data);
echo view('templates/footer');
}
public function transaction()
{
$data = [];
@ -266,7 +328,7 @@ class Dashboard extends BaseController
return redirect()->to(base_url());
}
$name= session()->get('logged_user');
$data['donationcause']=$this->dcModel->all_donation_cause();
echo view('templates/header',$data);
echo view('add_donation_cause');
@ -287,7 +349,28 @@ class Dashboard extends BaseController
];
$model->save($donationCause);
return $this->donation_cause();
return redirect()->to(base_url()."/Dashboard/donation_cause");
}
function edit_donation_cause($id)
{
if(!session()->has('logged_user'))
{
return redirect()->to(base_url());
}
$model = new Donation_cause();
$donation_cause=$model->find($id);
$data= [ 'post'=>$donation_cause ];
if($this->request->getMethod() == 'post')
{
$model = new Donation_cause();
$_POST['id'] = $id;
$model->save($_POST);
return redirect()->to(base_url()."/Dashboard/donation_cause");
}
echo view('templates/header',$data);
echo view('donation_cause_edit');
echo view('templates/footer');
}
}

View File

@ -0,0 +1,64 @@
<?php
namespace App\Controllers;
use CodeIgniter\Controller;
use App\Models\Receipt_model;
use App\Models\My_model;
use App\Models\Donation_cause;
use App\Models\Donor_model;
class PdfController extends Controller
{
public function index()
{
return view('pdf_view');
}
function htmlToPDF($receipt_id)
{
$model = new Receipt_model();
$receipt_data=$model->find($receipt_id);
$data= [ 'post'=>$receipt_data ];
// $html = view('pdf_view',$data);
// $dompdf->loadHtml($html);
$dompdf = new \Dompdf\Dompdf();
$dompdf->loadHtml(view('pdf_view',$data));
$dompdf->setPaper('A4', 'landscape');
$dompdf->render();
$dompdf->stream();
}
function download_receipt($receiptid)
{
// admin data
$dmodel = new Donor_model();
$id= session()->get('logged_user');
$admin_data=$dmodel->find($id);
// receipt data
$rmodel = new Receipt_model();
$receipt_id=$receiptid;
$receipt_data=$rmodel->find($receipt_id);
$donorid = $receipt_data['donor_id'];
$causeid = $receipt_data['cause_name'];
// donation cause
$causemodel = new Donation_cause();
$cause_id=$causeid;
$cause_data=$causemodel->find($cause_id);
// donor data
$model = new My_model();
$donor_id=$donorid;
$Donor_data=$model->find($donor_id);
// array for receipt
$data= [ 'donordata'=>$Donor_data , 'admindata' =>$admin_data , 'receipt'=>$receipt_data , 'causedata'=>$cause_data];
$dompdf = new \Dompdf\Dompdf();
$dompdf->loadHtml(view('download_receipt',$data));
$dompdf->setPaper('A4', 'portrait');
$dompdf->render();
$dompdf->stream();
}
}

View File

@ -0,0 +1,62 @@
<?php
namespace App\Controllers;
use CodeIgniter\Controller;
class Sendmail extends Controller
{
public function index()
{
return view('form_view');
}
function Mail_to_donor() {
$to = 'gowthamceline46@gmail.com';
$subject = 'Test';
$message = 'CI4';
$email = \Config\Services::email();
$email->setTo($to);
$email->setFrom('gowtham.manavalan.la@gmail.com', 'Confirm Registration');
$email->setSubject($subject);
$email->setMessage($message);
if ($email->send())
{
echo 'Email successfully sent';
}
else
{
$data = $email->printDebugger(['headers']);
print_r($data);
}
}
function sendMail() {
$to = $this->request->getVar('mailTo');
$subject = $this->request->getVar('subject');
$message = $this->request->getVar('message');
$email = \Config\Services::email();
$email->setTo($to);
$email->setFrom('johndoe@gmail.com', 'Confirm Registration');
$email->setSubject($subject);
$email->setMessage($message);
if ($email->send())
{
echo 'Email successfully sent';
}
else
{
$data = $email->printDebugger(['headers']);
print_r($data);
}
}
}

View File

@ -4,6 +4,8 @@ use CodeIgniter\Model;
class Dashboard_model extends Model
{
public function getLoggedInUserData($id)
{
$builder = $this->db->table('user_management');
@ -17,6 +19,7 @@ class Dashboard_model extends Model
}
}
function fetch_country()
{

View File

@ -19,6 +19,19 @@ class Donation_cause extends Model
$output = $result->getResultArray();
return $output;
}
function fetch_cause_name()
{
$builder = $this->db->table('donation_cause');
$query = $builder->get();
//print_r($query);die();
$output = '<option value="">Select Cause Name</option>';
foreach($query->getResult() as $row)
{
$output .= '<option value="'.$row->id.'">'.$row->cause_name.'</option>';
}
return $output;
}
// protected $returnType = 'array';

View File

@ -18,7 +18,16 @@ class Receipt_model extends Model
$result = $builder->get();
$output = $result->getResultArray();
return $output;
}
}
function last_receipt()
{
$builder=$this->db->query("SELECT receipt_id,receipt_no,date,donor_id,amount,mode_of_receipt,receipt_details,cause_name,remarks FROM receipts where receipt_id =(select max(receipt_id) from receipts) ");
$output = $builder->getResultArray();
return $output;
}
// protected $returnType = 'array';

View File

@ -3,7 +3,7 @@
<div class="container register-form">
</br>
<div class="row">
<div class="col-md-4">
<div class="col-md-3">
</div>
<div class="col-md-4">
<h2>Donation Cause</h2>
@ -11,7 +11,7 @@
<div class="form">
<div class="form-content">
<form id="cause_form" method="post" action="" >
<form id="" method="post" action="<?= base_url()."/add_donation_cause"; ?>" >
<div class="row">
<div class="col-md-3">
</div>
@ -47,7 +47,7 @@
</form>
</div>
</div>
</div>
</div></div>
</br></br>
<div class="container">
<div class="row">
@ -76,7 +76,7 @@
<td><?php echo $row['from_date'];?></td>
<td><?php echo $row['to_date'];?></td>
<td><a href="<?= base_url() ?>/Dashboard/edit_donation_data/<?php echo $row['id'];?>">Edit</a></td>
<td><a href="<?= base_url() ?>/Dashboard/edit_donation_cause/<?php echo $row['id'];?>">Edit</a></td>
</tr>
<?php } ?>

View File

@ -3,7 +3,7 @@
<div class="col-md-4">
</div>
<div class="col-md-8">
<h1>Welcome , <?= ucfirst($userdata->name);?> </h1></br>
<h1>Welcome , <?= ucfirst($userdata->name); ?> </h1></br>
<h4>Mobile:<?= $userdata->phone;?></h4></br>
<h4>Email :<?= $userdata->email;?></h4></br>
<h4>Organization Name :<?= $userdata->org_name;?></h4></br>

View File

@ -0,0 +1,50 @@
<div class="container">
<div class="container register-form">
</br>
<div class="row">
<div class="col-md-3">
</div>
<div class="col-md-4">
<h2>Donation Cause Edit</h2>
</div></div></br>
<div class="form">
<div class="form-content">
<form id="" method="post" action="" >
<div class="row">
<div class="col-md-3">
</div>
<div class="col-md-8">
<div class="form-group">
<input type="text" class="form-control" placeholder="CAUSE NAME" name="cause_name" value="<?= $post['cause_name'] ?>"/>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
</div>
<div class="col-md-4">
<div class="form-group">
<input type="text" class="form-control date-input" placeholder="FROM*" name="from_date" id="txtDate" value="<?= $post['from_date'] ?>"/>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<input type="text" class="form-control" placeholder="TO*" name="to_date" id="txtDate2" value="<?= $post['to_date'] ?>"/>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3"></div><div class="col-md-8">
<button type="submit" class="btn btn-primary">Submit</button>
</div></div>
</form>
</div>
</div>
</div></div>

View File

@ -6,7 +6,7 @@
<div class="col-md-4">
</div>
<div class="col-md-4">
<h2>Transaction upload</h2>
<h2>Donation Date upload</h2>
</div></div></br>
<div class="form">
@ -25,10 +25,18 @@
</div>
<div class="col-md-4">
<div class="form-group">
<input type="text" class="form-control" placeholder="CAUSE NAME" name="cause_name" value=""/>
<select name="cause_name" id="cause_name" class="form-control ">
<option value="">Select Cause Name</option>
</select>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="PAYMENT MODE" name="mode_of_payment" value=""/>
<select class="form-control" name="mode_of_payment" required>
<option value="">Mode of Payment</option>
<option value="Case">Case</option>
<option value="Check">Check</option>
<option value="Card">Card</option>
</select>
</div>
</div>
</div>
@ -38,7 +46,7 @@
<div class="col-md-4">
<div class="form-group">
<input type="text" class="form-control" placeholder="REF 1" name="ref_1" value=""/>
<input type="text" class="form-control" placeholder="Payment Mode Referal" name="ref_1" value=""/>
</div>
</div>

View File

@ -0,0 +1,228 @@
<table>
<tr>
</tr>
</table>
<!doctype html>
<html>
<head>
<style>
table, td, th {
border: px solid black;
}
table {
border-collapse: collapse;
width: 100%;
}
th {
height: 70px;
}
.donation {
font-size: 30px;
}
</style>
</head>
<body>
<table class="table">
<tr class="heading">
<tr>
<td >
<p class="donation">DONATION RECEIPT</p>
</td>
<td>
Receipt No #: <?= $receipt['receipt_id'] ?><br>
Date :<?= $receipt['date'] ?>
</td>
</tr>
</tr>
<tr class="heading">
<tr>
<td>
<?= ucfirst($admindata['org_name']); ?><br>
<?= $admindata['address'] ?>,<?= $admindata['city'] ?>,<br>
<?= $admindata['state'] ?>-<?= $admindata['pin_code'] ?>.
</td>
<td>
Email :<?= $admindata['email'] ?><br>
Phone :<?= $admindata['phone'] ?>.<br>
</td>
</tr></tr>
<tr class="heading">
<td>
Donor
</td>
<td>
<?= $donordata['name'] ?>
</td>
</tr>
<tr class="details">
<td>
Address
</td>
<td>
<?= $donordata['address'] ?>,<?= $donordata['city'] ?>,<?= $donordata['state'] ?>,<?= $donordata['country'] ?>-<?= $donordata['pin_code'] ?>
</td>
</tr>
<tr class="heading">
<td>
Donation Cause
</td>
<td>
<?= $causedata['cause_name']; ?>
</td>
</tr>
<tr class="item">
<td>
Donation Cause Validity
</td>
<td>
<?= $causedata['from_date']; ?>-to-<?= $causedata['to_date']; ?>
</td>
</tr>
<tr class="heading">
<td>
Amount
</td>
<td>
<?= $receipt['amount'] ?>
</td>
</tr>
<tr class="item">
<td>
Amount in Words
</td>
<td>
<!-- call the function here -->
<?php $amt_words= $receipt['amount'];
// nummeric value in variable
$get_amount= AmountInWords($amt_words);
echo $get_amount;
?>
</td>
</tr>
<tr class="heading">
<td>
Payment Mode
</td>
<td>
<?= $receipt['mode_of_receipt'] ?>
</td>
</tr>
<tr class="item">
<td>
Payment Mode Referal
</td>
<td>
<?= $receipt['receipt_details'] ?>
</td>
</tr>
<!--<tr class="item">
<td>
Hosting (3 months)
</td>
<td>
$75.00
</td>
</tr>
<tr class="item last">
<td>
Domain name (1 year)
</td>
<td>
$10.00
</td>
</tr>
<tr class="total">
<td></td>
<td>
Total: $385.00
</td>
</tr>---->
</table>
</body>
</html>
<?php
// Create a function for converting the amount in words
function AmountInWords(float $amount)
{
$amount_after_decimal = round($amount - ($num = floor($amount)), 2) * 100;
// Check if there is any number after decimal
$amt_hundred = null;
$count_length = strlen($num);
$x = 0;
$string = array();
$change_words = array(0 => '', 1 => 'One', 2 => 'Two',
3 => 'Three', 4 => 'Four', 5 => 'Five', 6 => 'Six',
7 => 'Seven', 8 => 'Eight', 9 => 'Nine',
10 => 'Ten', 11 => 'Eleven', 12 => 'Twelve',
13 => 'Thirteen', 14 => 'Fourteen', 15 => 'Fifteen',
16 => 'Sixteen', 17 => 'Seventeen', 18 => 'Eighteen',
19 => 'Nineteen', 20 => 'Twenty', 30 => 'Thirty',
40 => 'Forty', 50 => 'Fifty', 60 => 'Sixty',
70 => 'Seventy', 80 => 'Eighty', 90 => 'Ninety');
$here_digits = array('', 'Hundred','Thousand','Lakh', 'Crore');
while( $x < $count_length ) {
$get_divider = ($x == 2) ? 10 : 100;
$amount = floor($num % $get_divider);
$num = floor($num / $get_divider);
$x += $get_divider == 10 ? 1 : 2;
if ($amount) {
$add_plural = (($counter = count($string)) && $amount > 9) ? 's' : null;
$amt_hundred = ($counter == 1 && $string[0]) ? ' and ' : null;
$string [] = ($amount < 21) ? $change_words[$amount].' '. $here_digits[$counter]. $add_plural.'
'.$amt_hundred:$change_words[floor($amount / 10) * 10].' '.$change_words[$amount % 10]. '
'.$here_digits[$counter].$add_plural.' '.$amt_hundred;
}
else $string[] = null;
}
$implode_to_Rupees = implode('', array_reverse($string));
$get_paise = ($amount_after_decimal > 0) ? "And " . ($change_words[$amount_after_decimal / 10] . "
" . $change_words[$amount_after_decimal % 10]) . ' Paise' : '';
return ($implode_to_Rupees ? $implode_to_Rupees . 'Rupees ' : '') . $get_paise;
}
?>

333
app/Views/pdf_view.php Normal file
View File

@ -0,0 +1,333 @@
<center><h2>RECEIPT</h2></center>
<div class="hover-btn">
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-2"><a href="<?= base_url() ?>/Dashboard/edit_receipt/<?php foreach($receipt as $key){echo $key['receipt_id'];}?>">
<button class="btn btn-one">Edit Receipt</button></a></div>
<div class="col-md-2"><a href="<?= base_url() ?>/PdfController/download_receipt/<?php foreach($receipt as $key){echo $key['receipt_id'];}?>">
<button class="btn btn-two">Download</button></a></div>
<div class="col-md-2"><a href="<?= base_url() ?>/Dashboard/edit_receipt/<?php foreach($receipt as $key){echo $key['receipt_id'];}?>">
<button class="btn btn-three">Send Mail</button></a></div>
<div class="col-md-2"><a href="<?= base_url() ?>/Dashboard">
<button class="btn btn-four">Exit</button></a></div>
</div>
<table>
<tr>
</tr>
</table>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>A simple, clean, and responsive HTML invoice template</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<style>
.hover-btn button{
margin:10px;
color:#FFF;
padding:10px 40px;
}
.hover-btn button:hover{
background:#5a5a5a;
}
.btn-one{
background: #f11350;
}
.btn-two{
background: #5863db;
}
.btn-three{
background: #c41f26;
}
.btn-four{
background: #58cadb;
}
</style>
<style>
.invoice-box {
max-width: 800px;
margin: auto;
padding: 30px;
border: 1px solid #eee;
box-shadow: 0 0 10px rgba(0, 0, 0, .15);
font-size: 16px;
line-height: 24px;
font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
color: #555;
margin-left: 30%;
}
.invoice-box table {
width: 100%;
line-height: inherit;
text-align: left;
}
.invoice-box table td {
padding: 5px;
vertical-align: top;
}
.invoice-box table tr td:nth-child(2) {
text-align: right;
}
.invoice-box table tr.top table td {
padding-bottom: 20px;
}
.invoice-box table tr.top table td.title {
font-size: 45px;
line-height: 45px;
color: #333;
}
.invoice-box table tr.information table td {
padding-bottom: 40px;
}
.invoice-box table tr.heading td {
background: #eee;
border-bottom: 1px solid #ddd;
font-weight: bold;
}
.invoice-box table tr.details td {
padding-bottom: 20px;
}
.invoice-box table tr.item td{
border-bottom: 1px solid #eee;
}
.invoice-box table tr.item.last td {
border-bottom: none;
}
.invoice-box table tr.total td:nth-child(2) {
border-top: 2px solid #eee;
font-weight: bold;
}
@media only screen and (max-width: 600px) {
.invoice-box table tr.top table td {
width: 100%;
display: block;
text-align: center;
}
.invoice-box table tr.information table td {
width: 100%;
display: block;
text-align: center;
}
}
/** RTL **/
.rtl {
direction: rtl;
font-family: Tahoma, 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
}
.rtl table {
text-align: right;
}
.rtl table tr td:nth-child(2) {
text-align: left;
}
.donation {
font-size: 30px;
}
</style>
</head>
<body>
<div class="invoice-box">
<table cellpadding="0" cellspacing="0">
<tr class="top">
<td colspan="2">
<table>
<tr>
<td class="title">
<p class="donation">DONATION RECEIPT</p>
</td>
<td>
Receipt No #: <?php foreach($receipt as $key){echo $key['receipt_id'];}?><br>
Created: <?php echo date("l jS \of F Y "); ?><br>
</td>
</tr>
</table>
</td>
</tr>
<tr class="information">
<tr>
<td>
<?= ucfirst($admindata['org_name']); ?><br>
<?= $admindata['address'] ?>,<?= $admindata['city'] ?>,<br>
<?= $admindata['state'] ?>-<?= $admindata['pin_code'] ?>.
</td>
<td>
Email :<?= $admindata['email'] ?><br>
Phone :<?= $admindata['phone'] ?>.<br>
</td>
</tr></tr>
<tr class="heading">
<td>
Donation Cause
</td>
<td>
<?= $causedata['cause_name']; ?>
</td>
</tr>
<tr class="item">
<td>
Donation Cause Validity
</td>
<td>
<?= $causedata['from_date']; ?>-to-<?= $causedata['to_date']; ?>
</td>
</tr>
<tr class="heading">
<td>
Payment Method
</td>
<td>
Check #
</td>
</tr>
<tr class="details">
<td>
Check
</td>
<td>
<?= $donordata['name'] ?><?php foreach($receipt as $key){echo $key['amount'];}?>
</td>
</tr>
<tr class="heading">
<td>
Item
</td>
<td>
Price
</td>
</tr>
<tr class="item">
<td>
Website design
</td>
<td>
$300.00
</td>
</tr>
<tr class="item">
<td>
Hosting (3 months)
</td>
<td>
$75.00
</td>
</tr>
<tr class="item last">
<td>
Domain name (1 year)
</td>
<td>
$10.00
</td>
</tr>
<tr class="total">
<td></td>
<td>
Total: $385.00
</td>
</tr>
</table>
</div>
</body>
</html>
<?php
// Create a function for converting the amount in words
function AmountInWords(float $amount)
{
$amount_after_decimal = round($amount - ($num = floor($amount)), 2) * 100;
// Check if there is any number after decimal
$amt_hundred = null;
$count_length = strlen($num);
$x = 0;
$string = array();
$change_words = array(0 => '', 1 => 'One', 2 => 'Two',
3 => 'Three', 4 => 'Four', 5 => 'Five', 6 => 'Six',
7 => 'Seven', 8 => 'Eight', 9 => 'Nine',
10 => 'Ten', 11 => 'Eleven', 12 => 'Twelve',
13 => 'Thirteen', 14 => 'Fourteen', 15 => 'Fifteen',
16 => 'Sixteen', 17 => 'Seventeen', 18 => 'Eighteen',
19 => 'Nineteen', 20 => 'Twenty', 30 => 'Thirty',
40 => 'Forty', 50 => 'Fifty', 60 => 'Sixty',
70 => 'Seventy', 80 => 'Eighty', 90 => 'Ninety');
$here_digits = array('', 'Hundred','Thousand','Lakh', 'Crore');
while( $x < $count_length ) {
$get_divider = ($x == 2) ? 10 : 100;
$amount = floor($num % $get_divider);
$num = floor($num / $get_divider);
$x += $get_divider == 10 ? 1 : 2;
if ($amount) {
$add_plural = (($counter = count($string)) && $amount > 9) ? 's' : null;
$amt_hundred = ($counter == 1 && $string[0]) ? ' and ' : null;
$string [] = ($amount < 21) ? $change_words[$amount].' '. $here_digits[$counter]. $add_plural.'
'.$amt_hundred:$change_words[floor($amount / 10) * 10].' '.$change_words[$amount % 10]. '
'.$here_digits[$counter].$add_plural.' '.$amt_hundred;
}
else $string[] = null;
}
$implode_to_Rupees = implode('', array_reverse($string));
$get_paise = ($amount_after_decimal > 0) ? "And " . ($change_words[$amount_after_decimal / 10] . "
" . $change_words[$amount_after_decimal % 10]) . ' Paise' : '';
return ($implode_to_Rupees ? $implode_to_Rupees . 'Rupees ' : '') . $get_paise;
}
?>
<!-- call the function here -->
<?php $amt_words=7787;
// nummeric value in variable
$get_amount= AmountInWords($amt_words);
echo $get_amount;
?>

View File

@ -49,7 +49,10 @@
</select>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="CAUSE NAME" name="cause_name" value="<?= $post['cause_name'] ?>"/>
<select name="cause_name" id="cause_name" class="form-control ">
<option value="<?= $post['cause_name'] ?>">Select Cause Name</option>
</select>
</div>
</div>
<div class="col-md-4">
@ -69,3 +72,4 @@
</div>
</div>
</div>
</div>

View File

@ -48,7 +48,10 @@
</select>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="CAUSE NAME" name="cause_name" value=""/>
<select name="cause_name" id="cause_name" class="form-control ">
<option value="">Select Cause Name</option>
</select>
</div>
</div>
<div class="col-md-4">

View File

@ -1,12 +1,12 @@
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="col-md-3">
</div>
<div class="col-md-4">
<h2>ALL RECEIPTS</h2>
</div></div></br>
<div class="row">
<div class="col-md-4">
<div class="col-md-3">
</div>
<div class="col-md-8">
<table class="table">
@ -19,6 +19,7 @@
<th> Details</th>
<th> Cause</th>
<th> Action</th>
<th> Get Receipt</th>
</tr>
<?php foreach ($receiptdata as $row)
@ -32,10 +33,11 @@
<td><?php echo $row['receipt_details'];?></td>
<td><?php echo $row['cause_name'];?></td>
<td><a href="<?= base_url() ?>/Dashboard/edit_receipt/<?php echo $row['receipt_id'];?>">Edit</a></td>
<td><a href="<?= base_url() ?>/Dashboard/view_receipt/<?php echo $row['receipt_id'];?>">View Receipt</a></td>
</tr>
<?php } ?>
<table>
<a href="<?= base_url() ?>/Dashboard/last_receipt">Edit</a>
</div>
</div>
</div>

View File

@ -375,15 +375,13 @@ $.ajax({
cache: false,
contentType: false,
processData: false,
success: function (data) {
$("#cause_form")[0].reset();
$(".cause_table").load(window.location + " .cause_table");
}
});
return false;
});
});
</script>
<script>
$.ajax({
@ -405,6 +403,16 @@ $.ajax({
$('#donor_id').html(data);
}
});
$.ajax({
url:"<?= base_url(); ?>/fetch_cause_name",
method:"GET",
data:{},
success:function(data)
{
$('#cause_name').html(data);
}
});
$(document).ready(function(){
//fetch state and sity values

353
app/Views/view_receipt.php Normal file
View File

@ -0,0 +1,353 @@
<center><h2>RECEIPT</h2></center>
<div class="hover-btn">
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-2"><a href="<?= base_url() ?>/Dashboard/edit_receipt/<?= $receipt['receipt_id'] ?>">
<button class="btn btn-one">Edit Receipt</button></a></div>
<div class="col-md-2"><a href="<?= base_url() ?>/PdfController/download_receipt/<?= $receipt['receipt_id'] ?>">
<button class="btn btn-two">Download</button></a></div>
<div class="col-md-2"><a href="<?= base_url() ?>/Dashboard/edit_receipt/<?= $receipt['receipt_id'] ?>">
<button class="btn btn-three">Send Mail</button></a></div>
<div class="col-md-2"><a href="<?= base_url() ?>/Dashboard">
<button class="btn btn-four">Exit</button></a></div>
</div>
<table>
<tr>
</tr>
</table>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>A simple, clean, and responsive HTML invoice template</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<style>
.hover-btn button{
margin:10px;
color:#FFF;
padding:10px 40px;
}
.hover-btn button:hover{
background:#5a5a5a;
}
.btn-one{
background: #f11350;
}
.btn-two{
background: #5863db;
}
.btn-three{
background: #c41f26;
}
.btn-four{
background: #58cadb;
}
</style>
<style>
.invoice-box {
max-width: 800px;
margin: auto;
padding: 30px;
border: 1px solid #eee;
box-shadow: 0 0 10px rgba(0, 0, 0, .15);
font-size: 16px;
line-height: 24px;
font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
color: #555;
margin-left: 30%;
}
.invoice-box table {
width: 100%;
line-height: inherit;
text-align: left;
}
.invoice-box table td {
padding: 5px;
vertical-align: top;
}
.invoice-box table tr td:nth-child(2) {
text-align: right;
}
.invoice-box table tr.top table td {
padding-bottom: 20px;
}
.invoice-box table tr.top table td.title {
font-size: 45px;
line-height: 45px;
color: #333;
}
.invoice-box table tr.information table td {
padding-bottom: 40px;
}
.invoice-box table tr.heading td {
background: #eee;
border-bottom: 1px solid #ddd;
font-weight: bold;
}
.invoice-box table tr.details td {
padding-bottom: 20px;
}
.invoice-box table tr.item td{
border-bottom: 1px solid #eee;
}
.invoice-box table tr.item.last td {
border-bottom: none;
}
.invoice-box table tr.total td:nth-child(2) {
border-top: 2px solid #eee;
font-weight: bold;
}
@media only screen and (max-width: 600px) {
.invoice-box table tr.top table td {
width: 100%;
display: block;
text-align: center;
}
.invoice-box table tr.information table td {
width: 100%;
display: block;
text-align: center;
}
}
/** RTL **/
.rtl {
direction: rtl;
font-family: Tahoma, 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
}
.rtl table {
text-align: right;
}
.rtl table tr td:nth-child(2) {
text-align: left;
}
.donation {
font-size: 30px;
}
</style>
</head>
<body>
<div class="invoice-box">
<table cellpadding="0" cellspacing="0">
<tr class="top">
<td colspan="2">
<table>
<tr>
<td class="title">
<p class="donation">DONATION RECEIPT</p>
</td>
<td>
Receipt No #: <?= $receipt['receipt_id'] ?><br>
Date :<?= $receipt['date'] ?>
</td>
</tr>
</table>
</td>
</tr>
<tr class="information">
<tr>
<td>
<?= ucfirst($admindata['org_name']); ?><br>
<?= $admindata['address'] ?>,<?= $admindata['city'] ?>,<br>
<?= $admindata['state'] ?>-<?= $admindata['pin_code'] ?>.
</td>
<td>
Email :<?= $admindata['email'] ?><br>
Phone :<?= $admindata['phone'] ?>.<br>
</td>
</tr></tr>
<tr class="heading">
<td>
Donor
</td>
<td>
<?= $donordata['name'] ?>
</td>
</tr>
<tr class="details">
<td>
Address
</td>
<td>
<?= $donordata['address'] ?>,<?= $donordata['city'] ?>,<?= $donordata['state'] ?>,<?= $donordata['country'] ?>-<?= $donordata['pin_code'] ?>
</td>
</tr>
<tr class="heading">
<td>
Donation Cause
</td>
<td>
<?= $causedata['cause_name']; ?>
</td>
</tr>
<tr class="item">
<td>
Donation Cause Validity
</td>
<td>
<?= $causedata['from_date']; ?>-to-<?= $causedata['to_date']; ?>
</td>
</tr>
<tr class="heading">
<td>
Amount
</td>
<td>
<?= $receipt['amount'] ?>
</td>
</tr>
<tr class="item">
<td>
Amount in Words
</td>
<td>
<!-- call the function here -->
<?php $amt_words= $receipt['amount'];
// nummeric value in variable
$get_amount= AmountInWords($amt_words);
echo $get_amount;
?>
</td>
</tr>
<tr class="heading">
<td>
Payment Mode
</td>
<td>
<?= $receipt['mode_of_receipt'] ?>
</td>
</tr>
<tr class="item">
<td>
Payment Mode Referal
</td>
<td>
<?= $receipt['receipt_details'] ?>
</td>
</tr>
<!--<tr class="item">
<td>
Hosting (3 months)
</td>
<td>
$75.00
</td>
</tr>
<tr class="item last">
<td>
Domain name (1 year)
</td>
<td>
$10.00
</td>
</tr>
<tr class="total">
<td></td>
<td>
Total: $385.00
</td>
</tr>---->
</table>
</div>
</body>
</html>
<?php
// Create a function for converting the amount in words
function AmountInWords(float $amount)
{
$amount_after_decimal = round($amount - ($num = floor($amount)), 2) * 100;
// Check if there is any number after decimal
$amt_hundred = null;
$count_length = strlen($num);
$x = 0;
$string = array();
$change_words = array(0 => '', 1 => 'One', 2 => 'Two',
3 => 'Three', 4 => 'Four', 5 => 'Five', 6 => 'Six',
7 => 'Seven', 8 => 'Eight', 9 => 'Nine',
10 => 'Ten', 11 => 'Eleven', 12 => 'Twelve',
13 => 'Thirteen', 14 => 'Fourteen', 15 => 'Fifteen',
16 => 'Sixteen', 17 => 'Seventeen', 18 => 'Eighteen',
19 => 'Nineteen', 20 => 'Twenty', 30 => 'Thirty',
40 => 'Forty', 50 => 'Fifty', 60 => 'Sixty',
70 => 'Seventy', 80 => 'Eighty', 90 => 'Ninety');
$here_digits = array('', 'Hundred','Thousand','Lakh', 'Crore');
while( $x < $count_length ) {
$get_divider = ($x == 2) ? 10 : 100;
$amount = floor($num % $get_divider);
$num = floor($num / $get_divider);
$x += $get_divider == 10 ? 1 : 2;
if ($amount) {
$add_plural = (($counter = count($string)) && $amount > 9) ? 's' : null;
$amt_hundred = ($counter == 1 && $string[0]) ? ' and ' : null;
$string [] = ($amount < 21) ? $change_words[$amount].' '. $here_digits[$counter]. $add_plural.'
'.$amt_hundred:$change_words[floor($amount / 10) * 10].' '.$change_words[$amount % 10]. '
'.$here_digits[$counter].$add_plural.' '.$amt_hundred;
}
else $string[] = null;
}
$implode_to_Rupees = implode('', array_reverse($string));
$get_paise = ($amount_after_decimal > 0) ? "And " . ($change_words[$amount_after_decimal / 10] . "
" . $change_words[$amount_after_decimal % 10]) . ' Paise' : '';
return ($implode_to_Rupees ? $implode_to_Rupees . 'Rupees ' : '') . $get_paise;
}
?>

View File

@ -181,7 +181,7 @@ class CodeIgniter
public function initialize()
{
// Set default locale on the server
locale_set_default($this->config->defaultLocale ?? 'en');
//locale_set_default($this->config->defaultLocale ?? 'en');
// Set default timezone on the server
date_default_timezone_set($this->config->appTimezone ?? 'UTC');

View File

@ -0,0 +1,572 @@
<?php return array (
'codeToName' =>
array (
32 => 'space',
160 => 'space',
33 => 'exclam',
34 => 'quotedbl',
35 => 'numbersign',
36 => 'dollar',
37 => 'percent',
38 => 'ampersand',
146 => 'quoteright',
40 => 'parenleft',
41 => 'parenright',
42 => 'asterisk',
43 => 'plus',
44 => 'comma',
45 => 'hyphen',
173 => 'hyphen',
46 => 'period',
47 => 'slash',
48 => 'zero',
49 => 'one',
50 => 'two',
51 => 'three',
52 => 'four',
53 => 'five',
54 => 'six',
55 => 'seven',
56 => 'eight',
57 => 'nine',
58 => 'colon',
59 => 'semicolon',
60 => 'less',
61 => 'equal',
62 => 'greater',
63 => 'question',
64 => 'at',
65 => 'A',
66 => 'B',
67 => 'C',
68 => 'D',
69 => 'E',
70 => 'F',
71 => 'G',
72 => 'H',
73 => 'I',
74 => 'J',
75 => 'K',
76 => 'L',
77 => 'M',
78 => 'N',
79 => 'O',
80 => 'P',
81 => 'Q',
82 => 'R',
83 => 'S',
84 => 'T',
85 => 'U',
86 => 'V',
87 => 'W',
88 => 'X',
89 => 'Y',
90 => 'Z',
91 => 'bracketleft',
92 => 'backslash',
93 => 'bracketright',
94 => 'asciicircum',
95 => 'underscore',
145 => 'quoteleft',
97 => 'a',
98 => 'b',
99 => 'c',
100 => 'd',
101 => 'e',
102 => 'f',
103 => 'g',
104 => 'h',
105 => 'i',
106 => 'j',
107 => 'k',
108 => 'l',
109 => 'm',
110 => 'n',
111 => 'o',
112 => 'p',
113 => 'q',
114 => 'r',
115 => 's',
116 => 't',
117 => 'u',
118 => 'v',
119 => 'w',
120 => 'x',
121 => 'y',
122 => 'z',
123 => 'braceleft',
124 => 'bar',
125 => 'braceright',
126 => 'asciitilde',
161 => 'exclamdown',
162 => 'cent',
163 => 'sterling',
165 => 'yen',
131 => 'florin',
167 => 'section',
164 => 'currency',
39 => 'quotesingle',
147 => 'quotedblleft',
171 => 'guillemotleft',
139 => 'guilsinglleft',
155 => 'guilsinglright',
150 => 'endash',
134 => 'dagger',
135 => 'daggerdbl',
183 => 'periodcentered',
182 => 'paragraph',
149 => 'bullet',
130 => 'quotesinglbase',
132 => 'quotedblbase',
148 => 'quotedblright',
187 => 'guillemotright',
133 => 'ellipsis',
137 => 'perthousand',
191 => 'questiondown',
96 => 'grave',
180 => 'acute',
136 => 'circumflex',
152 => 'tilde',
175 => 'macron',
168 => 'dieresis',
184 => 'cedilla',
151 => 'emdash',
198 => 'AE',
170 => 'ordfeminine',
216 => 'Oslash',
140 => 'OE',
186 => 'ordmasculine',
230 => 'ae',
248 => 'oslash',
156 => 'oe',
223 => 'germandbls',
207 => 'Idieresis',
233 => 'eacute',
159 => 'Ydieresis',
247 => 'divide',
221 => 'Yacute',
194 => 'Acircumflex',
225 => 'aacute',
219 => 'Ucircumflex',
253 => 'yacute',
234 => 'ecircumflex',
220 => 'Udieresis',
218 => 'Uacute',
203 => 'Edieresis',
169 => 'copyright',
229 => 'aring',
224 => 'agrave',
227 => 'atilde',
154 => 'scaron',
237 => 'iacute',
251 => 'ucircumflex',
226 => 'acircumflex',
231 => 'ccedilla',
222 => 'Thorn',
179 => 'threesuperior',
210 => 'Ograve',
192 => 'Agrave',
215 => 'multiply',
250 => 'uacute',
255 => 'ydieresis',
238 => 'icircumflex',
202 => 'Ecircumflex',
228 => 'adieresis',
235 => 'edieresis',
205 => 'Iacute',
177 => 'plusminus',
166 => 'brokenbar',
174 => 'registered',
200 => 'Egrave',
142 => 'Zcaron',
208 => 'Eth',
199 => 'Ccedilla',
193 => 'Aacute',
196 => 'Adieresis',
232 => 'egrave',
211 => 'Oacute',
243 => 'oacute',
239 => 'idieresis',
212 => 'Ocircumflex',
217 => 'Ugrave',
254 => 'thorn',
178 => 'twosuperior',
214 => 'Odieresis',
181 => 'mu',
236 => 'igrave',
190 => 'threequarters',
153 => 'trademark',
204 => 'Igrave',
189 => 'onehalf',
244 => 'ocircumflex',
241 => 'ntilde',
201 => 'Eacute',
188 => 'onequarter',
138 => 'Scaron',
176 => 'degree',
242 => 'ograve',
249 => 'ugrave',
209 => 'Ntilde',
245 => 'otilde',
195 => 'Atilde',
197 => 'Aring',
213 => 'Otilde',
206 => 'Icircumflex',
172 => 'logicalnot',
246 => 'odieresis',
252 => 'udieresis',
240 => 'eth',
158 => 'zcaron',
185 => 'onesuperior',
128 => 'Euro',
),
'isUnicode' => false,
'FontName' => 'Helvetica-Bold',
'FullName' => 'Helvetica Bold',
'FamilyName' => 'Helvetica',
'Weight' => 'Bold',
'ItalicAngle' => '0',
'IsFixedPitch' => 'false',
'CharacterSet' => 'ExtendedRoman',
'FontBBox' =>
array (
0 => '-170',
1 => '-228',
2 => '1003',
3 => '962',
),
'UnderlinePosition' => '-100',
'UnderlineThickness' => '50',
'Version' => '002.000',
'EncodingScheme' => 'WinAnsiEncoding',
'CapHeight' => '718',
'XHeight' => '532',
'Ascender' => '718',
'Descender' => '-207',
'StdHW' => '118',
'StdVW' => '140',
'StartCharMetrics' => '317',
'C' =>
array (
32 => 278.0,
160 => 278.0,
33 => 333.0,
34 => 474.0,
35 => 556.0,
36 => 556.0,
37 => 889.0,
38 => 722.0,
146 => 278.0,
40 => 333.0,
41 => 333.0,
42 => 389.0,
43 => 584.0,
44 => 278.0,
45 => 333.0,
173 => 333.0,
46 => 278.0,
47 => 278.0,
48 => 556.0,
49 => 556.0,
50 => 556.0,
51 => 556.0,
52 => 556.0,
53 => 556.0,
54 => 556.0,
55 => 556.0,
56 => 556.0,
57 => 556.0,
58 => 333.0,
59 => 333.0,
60 => 584.0,
61 => 584.0,
62 => 584.0,
63 => 611.0,
64 => 975.0,
65 => 722.0,
66 => 722.0,
67 => 722.0,
68 => 722.0,
69 => 667.0,
70 => 611.0,
71 => 778.0,
72 => 722.0,
73 => 278.0,
74 => 556.0,
75 => 722.0,
76 => 611.0,
77 => 833.0,
78 => 722.0,
79 => 778.0,
80 => 667.0,
81 => 778.0,
82 => 722.0,
83 => 667.0,
84 => 611.0,
85 => 722.0,
86 => 667.0,
87 => 944.0,
88 => 667.0,
89 => 667.0,
90 => 611.0,
91 => 333.0,
92 => 278.0,
93 => 333.0,
94 => 584.0,
95 => 556.0,
145 => 278.0,
97 => 556.0,
98 => 611.0,
99 => 556.0,
100 => 611.0,
101 => 556.0,
102 => 333.0,
103 => 611.0,
104 => 611.0,
105 => 278.0,
106 => 278.0,
107 => 556.0,
108 => 278.0,
109 => 889.0,
110 => 611.0,
111 => 611.0,
112 => 611.0,
113 => 611.0,
114 => 389.0,
115 => 556.0,
116 => 333.0,
117 => 611.0,
118 => 556.0,
119 => 778.0,
120 => 556.0,
121 => 556.0,
122 => 500.0,
123 => 389.0,
124 => 280.0,
125 => 389.0,
126 => 584.0,
161 => 333.0,
162 => 556.0,
163 => 556.0,
'fraction' => 167.0,
165 => 556.0,
131 => 556.0,
167 => 556.0,
164 => 556.0,
39 => 238.0,
147 => 500.0,
171 => 556.0,
139 => 333.0,
155 => 333.0,
'fi' => 611.0,
'fl' => 611.0,
150 => 556.0,
134 => 556.0,
135 => 556.0,
183 => 278.0,
182 => 556.0,
149 => 350.0,
130 => 278.0,
132 => 500.0,
148 => 500.0,
187 => 556.0,
133 => 1000.0,
137 => 1000.0,
191 => 611.0,
96 => 333.0,
180 => 333.0,
136 => 333.0,
152 => 333.0,
175 => 333.0,
'breve' => 333.0,
'dotaccent' => 333.0,
168 => 333.0,
'ring' => 333.0,
184 => 333.0,
'hungarumlaut' => 333.0,
'ogonek' => 333.0,
'caron' => 333.0,
151 => 1000.0,
198 => 1000.0,
170 => 370.0,
'Lslash' => 611.0,
216 => 778.0,
140 => 1000.0,
186 => 365.0,
230 => 889.0,
'dotlessi' => 278.0,
'lslash' => 278.0,
248 => 611.0,
156 => 944.0,
223 => 611.0,
207 => 278.0,
233 => 556.0,
'abreve' => 556.0,
'uhungarumlaut' => 611.0,
'ecaron' => 556.0,
159 => 667.0,
247 => 584.0,
221 => 667.0,
194 => 722.0,
225 => 556.0,
219 => 722.0,
253 => 556.0,
'scommaaccent' => 556.0,
234 => 556.0,
'Uring' => 722.0,
220 => 722.0,
'aogonek' => 556.0,
218 => 722.0,
'uogonek' => 611.0,
203 => 667.0,
'Dcroat' => 722.0,
'commaaccent' => 250.0,
169 => 737.0,
'Emacron' => 667.0,
'ccaron' => 556.0,
229 => 556.0,
'Ncommaaccent' => 722.0,
'lacute' => 278.0,
224 => 556.0,
'Tcommaaccent' => 611.0,
'Cacute' => 722.0,
227 => 556.0,
'Edotaccent' => 667.0,
154 => 556.0,
'scedilla' => 556.0,
237 => 278.0,
'lozenge' => 494.0,
'Rcaron' => 722.0,
'Gcommaaccent' => 778.0,
251 => 611.0,
226 => 556.0,
'Amacron' => 722.0,
'rcaron' => 389.0,
231 => 556.0,
'Zdotaccent' => 611.0,
222 => 667.0,
'Omacron' => 778.0,
'Racute' => 722.0,
'Sacute' => 667.0,
'dcaron' => 743.0,
'Umacron' => 722.0,
'uring' => 611.0,
179 => 333.0,
210 => 778.0,
192 => 722.0,
'Abreve' => 722.0,
215 => 584.0,
250 => 611.0,
'Tcaron' => 611.0,
'partialdiff' => 494.0,
255 => 556.0,
'Nacute' => 722.0,
238 => 278.0,
202 => 667.0,
228 => 556.0,
235 => 556.0,
'cacute' => 556.0,
'nacute' => 611.0,
'umacron' => 611.0,
'Ncaron' => 722.0,
205 => 278.0,
177 => 584.0,
166 => 280.0,
174 => 737.0,
'Gbreve' => 778.0,
'Idotaccent' => 278.0,
'summation' => 600.0,
200 => 667.0,
'racute' => 389.0,
'omacron' => 611.0,
'Zacute' => 611.0,
142 => 611.0,
'greaterequal' => 549.0,
208 => 722.0,
199 => 722.0,
'lcommaaccent' => 278.0,
'tcaron' => 389.0,
'eogonek' => 556.0,
'Uogonek' => 722.0,
193 => 722.0,
196 => 722.0,
232 => 556.0,
'zacute' => 500.0,
'iogonek' => 278.0,
211 => 778.0,
243 => 611.0,
'amacron' => 556.0,
'sacute' => 556.0,
239 => 278.0,
212 => 778.0,
217 => 722.0,
'Delta' => 612.0,
254 => 611.0,
178 => 333.0,
214 => 778.0,
181 => 611.0,
236 => 278.0,
'ohungarumlaut' => 611.0,
'Eogonek' => 667.0,
'dcroat' => 611.0,
190 => 834.0,
'Scedilla' => 667.0,
'lcaron' => 400.0,
'Kcommaaccent' => 722.0,
'Lacute' => 611.0,
153 => 1000.0,
'edotaccent' => 556.0,
204 => 278.0,
'Imacron' => 278.0,
'Lcaron' => 611.0,
189 => 834.0,
'lessequal' => 549.0,
244 => 611.0,
241 => 611.0,
'Uhungarumlaut' => 722.0,
201 => 667.0,
'emacron' => 556.0,
'gbreve' => 611.0,
188 => 834.0,
138 => 667.0,
'Scommaaccent' => 667.0,
'Ohungarumlaut' => 778.0,
176 => 400.0,
242 => 611.0,
'Ccaron' => 722.0,
249 => 611.0,
'radical' => 549.0,
'Dcaron' => 722.0,
'rcommaaccent' => 389.0,
209 => 722.0,
245 => 611.0,
'Rcommaaccent' => 722.0,
'Lcommaaccent' => 611.0,
195 => 722.0,
'Aogonek' => 722.0,
197 => 722.0,
213 => 778.0,
'zdotaccent' => 500.0,
'Ecaron' => 667.0,
'Iogonek' => 278.0,
'kcommaaccent' => 556.0,
'minus' => 584.0,
206 => 278.0,
'ncaron' => 611.0,
'tcommaaccent' => 333.0,
172 => 584.0,
246 => 611.0,
252 => 611.0,
'notequal' => 549.0,
'gcommaaccent' => 611.0,
240 => 611.0,
158 => 500.0,
'ncommaaccent' => 611.0,
185 => 333.0,
'imacron' => 278.0,
128 => 556.0,
),
'CIDtoGID_Compressed' => true,
'CIDtoGID' => 'eJwDAAAAAAE=',
'_version_' => 6,
);

View File

@ -0,0 +1,572 @@
<?php return array (
'codeToName' =>
array (
32 => 'space',
160 => 'space',
33 => 'exclam',
34 => 'quotedbl',
35 => 'numbersign',
36 => 'dollar',
37 => 'percent',
38 => 'ampersand',
146 => 'quoteright',
40 => 'parenleft',
41 => 'parenright',
42 => 'asterisk',
43 => 'plus',
44 => 'comma',
45 => 'hyphen',
173 => 'hyphen',
46 => 'period',
47 => 'slash',
48 => 'zero',
49 => 'one',
50 => 'two',
51 => 'three',
52 => 'four',
53 => 'five',
54 => 'six',
55 => 'seven',
56 => 'eight',
57 => 'nine',
58 => 'colon',
59 => 'semicolon',
60 => 'less',
61 => 'equal',
62 => 'greater',
63 => 'question',
64 => 'at',
65 => 'A',
66 => 'B',
67 => 'C',
68 => 'D',
69 => 'E',
70 => 'F',
71 => 'G',
72 => 'H',
73 => 'I',
74 => 'J',
75 => 'K',
76 => 'L',
77 => 'M',
78 => 'N',
79 => 'O',
80 => 'P',
81 => 'Q',
82 => 'R',
83 => 'S',
84 => 'T',
85 => 'U',
86 => 'V',
87 => 'W',
88 => 'X',
89 => 'Y',
90 => 'Z',
91 => 'bracketleft',
92 => 'backslash',
93 => 'bracketright',
94 => 'asciicircum',
95 => 'underscore',
145 => 'quoteleft',
97 => 'a',
98 => 'b',
99 => 'c',
100 => 'd',
101 => 'e',
102 => 'f',
103 => 'g',
104 => 'h',
105 => 'i',
106 => 'j',
107 => 'k',
108 => 'l',
109 => 'm',
110 => 'n',
111 => 'o',
112 => 'p',
113 => 'q',
114 => 'r',
115 => 's',
116 => 't',
117 => 'u',
118 => 'v',
119 => 'w',
120 => 'x',
121 => 'y',
122 => 'z',
123 => 'braceleft',
124 => 'bar',
125 => 'braceright',
126 => 'asciitilde',
161 => 'exclamdown',
162 => 'cent',
163 => 'sterling',
165 => 'yen',
131 => 'florin',
167 => 'section',
164 => 'currency',
39 => 'quotesingle',
147 => 'quotedblleft',
171 => 'guillemotleft',
139 => 'guilsinglleft',
155 => 'guilsinglright',
150 => 'endash',
134 => 'dagger',
135 => 'daggerdbl',
183 => 'periodcentered',
182 => 'paragraph',
149 => 'bullet',
130 => 'quotesinglbase',
132 => 'quotedblbase',
148 => 'quotedblright',
187 => 'guillemotright',
133 => 'ellipsis',
137 => 'perthousand',
191 => 'questiondown',
96 => 'grave',
180 => 'acute',
136 => 'circumflex',
152 => 'tilde',
175 => 'macron',
168 => 'dieresis',
184 => 'cedilla',
151 => 'emdash',
198 => 'AE',
170 => 'ordfeminine',
216 => 'Oslash',
140 => 'OE',
186 => 'ordmasculine',
230 => 'ae',
248 => 'oslash',
156 => 'oe',
223 => 'germandbls',
207 => 'Idieresis',
233 => 'eacute',
159 => 'Ydieresis',
247 => 'divide',
221 => 'Yacute',
194 => 'Acircumflex',
225 => 'aacute',
219 => 'Ucircumflex',
253 => 'yacute',
234 => 'ecircumflex',
220 => 'Udieresis',
218 => 'Uacute',
203 => 'Edieresis',
169 => 'copyright',
229 => 'aring',
224 => 'agrave',
227 => 'atilde',
154 => 'scaron',
237 => 'iacute',
251 => 'ucircumflex',
226 => 'acircumflex',
231 => 'ccedilla',
222 => 'Thorn',
179 => 'threesuperior',
210 => 'Ograve',
192 => 'Agrave',
215 => 'multiply',
250 => 'uacute',
255 => 'ydieresis',
238 => 'icircumflex',
202 => 'Ecircumflex',
228 => 'adieresis',
235 => 'edieresis',
205 => 'Iacute',
177 => 'plusminus',
166 => 'brokenbar',
174 => 'registered',
200 => 'Egrave',
142 => 'Zcaron',
208 => 'Eth',
199 => 'Ccedilla',
193 => 'Aacute',
196 => 'Adieresis',
232 => 'egrave',
211 => 'Oacute',
243 => 'oacute',
239 => 'idieresis',
212 => 'Ocircumflex',
217 => 'Ugrave',
254 => 'thorn',
178 => 'twosuperior',
214 => 'Odieresis',
181 => 'mu',
236 => 'igrave',
190 => 'threequarters',
153 => 'trademark',
204 => 'Igrave',
189 => 'onehalf',
244 => 'ocircumflex',
241 => 'ntilde',
201 => 'Eacute',
188 => 'onequarter',
138 => 'Scaron',
176 => 'degree',
242 => 'ograve',
249 => 'ugrave',
209 => 'Ntilde',
245 => 'otilde',
195 => 'Atilde',
197 => 'Aring',
213 => 'Otilde',
206 => 'Icircumflex',
172 => 'logicalnot',
246 => 'odieresis',
252 => 'udieresis',
240 => 'eth',
158 => 'zcaron',
185 => 'onesuperior',
128 => 'Euro',
),
'isUnicode' => false,
'FontName' => 'Helvetica',
'FullName' => 'Helvetica',
'FamilyName' => 'Helvetica',
'Weight' => 'Medium',
'ItalicAngle' => '0',
'IsFixedPitch' => 'false',
'CharacterSet' => 'ExtendedRoman',
'FontBBox' =>
array (
0 => '-166',
1 => '-225',
2 => '1000',
3 => '931',
),
'UnderlinePosition' => '-100',
'UnderlineThickness' => '50',
'Version' => '002.000',
'EncodingScheme' => 'WinAnsiEncoding',
'CapHeight' => '718',
'XHeight' => '523',
'Ascender' => '718',
'Descender' => '-207',
'StdHW' => '76',
'StdVW' => '88',
'StartCharMetrics' => '317',
'C' =>
array (
32 => 278.0,
160 => 278.0,
33 => 278.0,
34 => 355.0,
35 => 556.0,
36 => 556.0,
37 => 889.0,
38 => 667.0,
146 => 222.0,
40 => 333.0,
41 => 333.0,
42 => 389.0,
43 => 584.0,
44 => 278.0,
45 => 333.0,
173 => 333.0,
46 => 278.0,
47 => 278.0,
48 => 556.0,
49 => 556.0,
50 => 556.0,
51 => 556.0,
52 => 556.0,
53 => 556.0,
54 => 556.0,
55 => 556.0,
56 => 556.0,
57 => 556.0,
58 => 278.0,
59 => 278.0,
60 => 584.0,
61 => 584.0,
62 => 584.0,
63 => 556.0,
64 => 1015.0,
65 => 667.0,
66 => 667.0,
67 => 722.0,
68 => 722.0,
69 => 667.0,
70 => 611.0,
71 => 778.0,
72 => 722.0,
73 => 278.0,
74 => 500.0,
75 => 667.0,
76 => 556.0,
77 => 833.0,
78 => 722.0,
79 => 778.0,
80 => 667.0,
81 => 778.0,
82 => 722.0,
83 => 667.0,
84 => 611.0,
85 => 722.0,
86 => 667.0,
87 => 944.0,
88 => 667.0,
89 => 667.0,
90 => 611.0,
91 => 278.0,
92 => 278.0,
93 => 278.0,
94 => 469.0,
95 => 556.0,
145 => 222.0,
97 => 556.0,
98 => 556.0,
99 => 500.0,
100 => 556.0,
101 => 556.0,
102 => 278.0,
103 => 556.0,
104 => 556.0,
105 => 222.0,
106 => 222.0,
107 => 500.0,
108 => 222.0,
109 => 833.0,
110 => 556.0,
111 => 556.0,
112 => 556.0,
113 => 556.0,
114 => 333.0,
115 => 500.0,
116 => 278.0,
117 => 556.0,
118 => 500.0,
119 => 722.0,
120 => 500.0,
121 => 500.0,
122 => 500.0,
123 => 334.0,
124 => 260.0,
125 => 334.0,
126 => 584.0,
161 => 333.0,
162 => 556.0,
163 => 556.0,
'fraction' => 167.0,
165 => 556.0,
131 => 556.0,
167 => 556.0,
164 => 556.0,
39 => 191.0,
147 => 333.0,
171 => 556.0,
139 => 333.0,
155 => 333.0,
'fi' => 500.0,
'fl' => 500.0,
150 => 556.0,
134 => 556.0,
135 => 556.0,
183 => 278.0,
182 => 537.0,
149 => 350.0,
130 => 222.0,
132 => 333.0,
148 => 333.0,
187 => 556.0,
133 => 1000.0,
137 => 1000.0,
191 => 611.0,
96 => 333.0,
180 => 333.0,
136 => 333.0,
152 => 333.0,
175 => 333.0,
'breve' => 333.0,
'dotaccent' => 333.0,
168 => 333.0,
'ring' => 333.0,
184 => 333.0,
'hungarumlaut' => 333.0,
'ogonek' => 333.0,
'caron' => 333.0,
151 => 1000.0,
198 => 1000.0,
170 => 370.0,
'Lslash' => 556.0,
216 => 778.0,
140 => 1000.0,
186 => 365.0,
230 => 889.0,
'dotlessi' => 278.0,
'lslash' => 222.0,
248 => 611.0,
156 => 944.0,
223 => 611.0,
207 => 278.0,
233 => 556.0,
'abreve' => 556.0,
'uhungarumlaut' => 556.0,
'ecaron' => 556.0,
159 => 667.0,
247 => 584.0,
221 => 667.0,
194 => 667.0,
225 => 556.0,
219 => 722.0,
253 => 500.0,
'scommaaccent' => 500.0,
234 => 556.0,
'Uring' => 722.0,
220 => 722.0,
'aogonek' => 556.0,
218 => 722.0,
'uogonek' => 556.0,
203 => 667.0,
'Dcroat' => 722.0,
'commaaccent' => 250.0,
169 => 737.0,
'Emacron' => 667.0,
'ccaron' => 500.0,
229 => 556.0,
'Ncommaaccent' => 722.0,
'lacute' => 222.0,
224 => 556.0,
'Tcommaaccent' => 611.0,
'Cacute' => 722.0,
227 => 556.0,
'Edotaccent' => 667.0,
154 => 500.0,
'scedilla' => 500.0,
237 => 278.0,
'lozenge' => 471.0,
'Rcaron' => 722.0,
'Gcommaaccent' => 778.0,
251 => 556.0,
226 => 556.0,
'Amacron' => 667.0,
'rcaron' => 333.0,
231 => 500.0,
'Zdotaccent' => 611.0,
222 => 667.0,
'Omacron' => 778.0,
'Racute' => 722.0,
'Sacute' => 667.0,
'dcaron' => 643.0,
'Umacron' => 722.0,
'uring' => 556.0,
179 => 333.0,
210 => 778.0,
192 => 667.0,
'Abreve' => 667.0,
215 => 584.0,
250 => 556.0,
'Tcaron' => 611.0,
'partialdiff' => 476.0,
255 => 500.0,
'Nacute' => 722.0,
238 => 278.0,
202 => 667.0,
228 => 556.0,
235 => 556.0,
'cacute' => 500.0,
'nacute' => 556.0,
'umacron' => 556.0,
'Ncaron' => 722.0,
205 => 278.0,
177 => 584.0,
166 => 260.0,
174 => 737.0,
'Gbreve' => 778.0,
'Idotaccent' => 278.0,
'summation' => 600.0,
200 => 667.0,
'racute' => 333.0,
'omacron' => 556.0,
'Zacute' => 611.0,
142 => 611.0,
'greaterequal' => 549.0,
208 => 722.0,
199 => 722.0,
'lcommaaccent' => 222.0,
'tcaron' => 317.0,
'eogonek' => 556.0,
'Uogonek' => 722.0,
193 => 667.0,
196 => 667.0,
232 => 556.0,
'zacute' => 500.0,
'iogonek' => 222.0,
211 => 778.0,
243 => 556.0,
'amacron' => 556.0,
'sacute' => 500.0,
239 => 278.0,
212 => 778.0,
217 => 722.0,
'Delta' => 612.0,
254 => 556.0,
178 => 333.0,
214 => 778.0,
181 => 556.0,
236 => 278.0,
'ohungarumlaut' => 556.0,
'Eogonek' => 667.0,
'dcroat' => 556.0,
190 => 834.0,
'Scedilla' => 667.0,
'lcaron' => 299.0,
'Kcommaaccent' => 667.0,
'Lacute' => 556.0,
153 => 1000.0,
'edotaccent' => 556.0,
204 => 278.0,
'Imacron' => 278.0,
'Lcaron' => 556.0,
189 => 834.0,
'lessequal' => 549.0,
244 => 556.0,
241 => 556.0,
'Uhungarumlaut' => 722.0,
201 => 667.0,
'emacron' => 556.0,
'gbreve' => 556.0,
188 => 834.0,
138 => 667.0,
'Scommaaccent' => 667.0,
'Ohungarumlaut' => 778.0,
176 => 400.0,
242 => 556.0,
'Ccaron' => 722.0,
249 => 556.0,
'radical' => 453.0,
'Dcaron' => 722.0,
'rcommaaccent' => 333.0,
209 => 722.0,
245 => 556.0,
'Rcommaaccent' => 722.0,
'Lcommaaccent' => 556.0,
195 => 667.0,
'Aogonek' => 667.0,
197 => 667.0,
213 => 778.0,
'zdotaccent' => 500.0,
'Ecaron' => 667.0,
'Iogonek' => 278.0,
'kcommaaccent' => 500.0,
'minus' => 584.0,
206 => 278.0,
'ncaron' => 556.0,
'tcommaaccent' => 278.0,
172 => 584.0,
246 => 556.0,
252 => 556.0,
'notequal' => 549.0,
'gcommaaccent' => 556.0,
240 => 556.0,
158 => 500.0,
'ncommaaccent' => 556.0,
185 => 333.0,
'imacron' => 278.0,
128 => 556.0,
),
'CIDtoGID_Compressed' => true,
'CIDtoGID' => 'eJwDAAAAAAE=',
'_version_' => 6,
);

View File

@ -0,0 +1,572 @@
<?php return array (
'codeToName' =>
array (
32 => 'space',
160 => 'space',
33 => 'exclam',
34 => 'quotedbl',
35 => 'numbersign',
36 => 'dollar',
37 => 'percent',
38 => 'ampersand',
146 => 'quoteright',
40 => 'parenleft',
41 => 'parenright',
42 => 'asterisk',
43 => 'plus',
44 => 'comma',
45 => 'hyphen',
173 => 'hyphen',
46 => 'period',
47 => 'slash',
48 => 'zero',
49 => 'one',
50 => 'two',
51 => 'three',
52 => 'four',
53 => 'five',
54 => 'six',
55 => 'seven',
56 => 'eight',
57 => 'nine',
58 => 'colon',
59 => 'semicolon',
60 => 'less',
61 => 'equal',
62 => 'greater',
63 => 'question',
64 => 'at',
65 => 'A',
66 => 'B',
67 => 'C',
68 => 'D',
69 => 'E',
70 => 'F',
71 => 'G',
72 => 'H',
73 => 'I',
74 => 'J',
75 => 'K',
76 => 'L',
77 => 'M',
78 => 'N',
79 => 'O',
80 => 'P',
81 => 'Q',
82 => 'R',
83 => 'S',
84 => 'T',
85 => 'U',
86 => 'V',
87 => 'W',
88 => 'X',
89 => 'Y',
90 => 'Z',
91 => 'bracketleft',
92 => 'backslash',
93 => 'bracketright',
94 => 'asciicircum',
95 => 'underscore',
145 => 'quoteleft',
97 => 'a',
98 => 'b',
99 => 'c',
100 => 'd',
101 => 'e',
102 => 'f',
103 => 'g',
104 => 'h',
105 => 'i',
106 => 'j',
107 => 'k',
108 => 'l',
109 => 'm',
110 => 'n',
111 => 'o',
112 => 'p',
113 => 'q',
114 => 'r',
115 => 's',
116 => 't',
117 => 'u',
118 => 'v',
119 => 'w',
120 => 'x',
121 => 'y',
122 => 'z',
123 => 'braceleft',
124 => 'bar',
125 => 'braceright',
126 => 'asciitilde',
161 => 'exclamdown',
162 => 'cent',
163 => 'sterling',
165 => 'yen',
131 => 'florin',
167 => 'section',
164 => 'currency',
39 => 'quotesingle',
147 => 'quotedblleft',
171 => 'guillemotleft',
139 => 'guilsinglleft',
155 => 'guilsinglright',
150 => 'endash',
134 => 'dagger',
135 => 'daggerdbl',
183 => 'periodcentered',
182 => 'paragraph',
149 => 'bullet',
130 => 'quotesinglbase',
132 => 'quotedblbase',
148 => 'quotedblright',
187 => 'guillemotright',
133 => 'ellipsis',
137 => 'perthousand',
191 => 'questiondown',
96 => 'grave',
180 => 'acute',
136 => 'circumflex',
152 => 'tilde',
175 => 'macron',
168 => 'dieresis',
184 => 'cedilla',
151 => 'emdash',
198 => 'AE',
170 => 'ordfeminine',
216 => 'Oslash',
140 => 'OE',
186 => 'ordmasculine',
230 => 'ae',
248 => 'oslash',
156 => 'oe',
223 => 'germandbls',
207 => 'Idieresis',
233 => 'eacute',
159 => 'Ydieresis',
247 => 'divide',
221 => 'Yacute',
194 => 'Acircumflex',
225 => 'aacute',
219 => 'Ucircumflex',
253 => 'yacute',
234 => 'ecircumflex',
220 => 'Udieresis',
218 => 'Uacute',
203 => 'Edieresis',
169 => 'copyright',
229 => 'aring',
224 => 'agrave',
227 => 'atilde',
154 => 'scaron',
237 => 'iacute',
251 => 'ucircumflex',
226 => 'acircumflex',
231 => 'ccedilla',
222 => 'Thorn',
179 => 'threesuperior',
210 => 'Ograve',
192 => 'Agrave',
215 => 'multiply',
250 => 'uacute',
255 => 'ydieresis',
238 => 'icircumflex',
202 => 'Ecircumflex',
228 => 'adieresis',
235 => 'edieresis',
205 => 'Iacute',
177 => 'plusminus',
166 => 'brokenbar',
174 => 'registered',
200 => 'Egrave',
142 => 'Zcaron',
208 => 'Eth',
199 => 'Ccedilla',
193 => 'Aacute',
196 => 'Adieresis',
232 => 'egrave',
211 => 'Oacute',
243 => 'oacute',
239 => 'idieresis',
212 => 'Ocircumflex',
217 => 'Ugrave',
254 => 'thorn',
178 => 'twosuperior',
214 => 'Odieresis',
181 => 'mu',
236 => 'igrave',
190 => 'threequarters',
153 => 'trademark',
204 => 'Igrave',
189 => 'onehalf',
244 => 'ocircumflex',
241 => 'ntilde',
201 => 'Eacute',
188 => 'onequarter',
138 => 'Scaron',
176 => 'degree',
242 => 'ograve',
249 => 'ugrave',
209 => 'Ntilde',
245 => 'otilde',
195 => 'Atilde',
197 => 'Aring',
213 => 'Otilde',
206 => 'Icircumflex',
172 => 'logicalnot',
246 => 'odieresis',
252 => 'udieresis',
240 => 'eth',
158 => 'zcaron',
185 => 'onesuperior',
128 => 'Euro',
),
'isUnicode' => false,
'FontName' => 'Times-Bold',
'FullName' => 'Times Bold',
'FamilyName' => 'Times',
'Weight' => 'Bold',
'ItalicAngle' => '0',
'IsFixedPitch' => 'false',
'CharacterSet' => 'ExtendedRoman',
'FontBBox' =>
array (
0 => '-168',
1 => '-218',
2 => '1000',
3 => '935',
),
'UnderlinePosition' => '-100',
'UnderlineThickness' => '50',
'Version' => '002.000',
'EncodingScheme' => 'WinAnsiEncoding',
'CapHeight' => '676',
'XHeight' => '461',
'Ascender' => '683',
'Descender' => '-217',
'StdHW' => '44',
'StdVW' => '139',
'StartCharMetrics' => '317',
'C' =>
array (
32 => 250.0,
160 => 250.0,
33 => 333.0,
34 => 555.0,
35 => 500.0,
36 => 500.0,
37 => 1000.0,
38 => 833.0,
146 => 333.0,
40 => 333.0,
41 => 333.0,
42 => 500.0,
43 => 570.0,
44 => 250.0,
45 => 333.0,
173 => 333.0,
46 => 250.0,
47 => 278.0,
48 => 500.0,
49 => 500.0,
50 => 500.0,
51 => 500.0,
52 => 500.0,
53 => 500.0,
54 => 500.0,
55 => 500.0,
56 => 500.0,
57 => 500.0,
58 => 333.0,
59 => 333.0,
60 => 570.0,
61 => 570.0,
62 => 570.0,
63 => 500.0,
64 => 930.0,
65 => 722.0,
66 => 667.0,
67 => 722.0,
68 => 722.0,
69 => 667.0,
70 => 611.0,
71 => 778.0,
72 => 778.0,
73 => 389.0,
74 => 500.0,
75 => 778.0,
76 => 667.0,
77 => 944.0,
78 => 722.0,
79 => 778.0,
80 => 611.0,
81 => 778.0,
82 => 722.0,
83 => 556.0,
84 => 667.0,
85 => 722.0,
86 => 722.0,
87 => 1000.0,
88 => 722.0,
89 => 722.0,
90 => 667.0,
91 => 333.0,
92 => 278.0,
93 => 333.0,
94 => 581.0,
95 => 500.0,
145 => 333.0,
97 => 500.0,
98 => 556.0,
99 => 444.0,
100 => 556.0,
101 => 444.0,
102 => 333.0,
103 => 500.0,
104 => 556.0,
105 => 278.0,
106 => 333.0,
107 => 556.0,
108 => 278.0,
109 => 833.0,
110 => 556.0,
111 => 500.0,
112 => 556.0,
113 => 556.0,
114 => 444.0,
115 => 389.0,
116 => 333.0,
117 => 556.0,
118 => 500.0,
119 => 722.0,
120 => 500.0,
121 => 500.0,
122 => 444.0,
123 => 394.0,
124 => 220.0,
125 => 394.0,
126 => 520.0,
161 => 333.0,
162 => 500.0,
163 => 500.0,
'fraction' => 167.0,
165 => 500.0,
131 => 500.0,
167 => 500.0,
164 => 500.0,
39 => 278.0,
147 => 500.0,
171 => 500.0,
139 => 333.0,
155 => 333.0,
'fi' => 556.0,
'fl' => 556.0,
150 => 500.0,
134 => 500.0,
135 => 500.0,
183 => 250.0,
182 => 540.0,
149 => 350.0,
130 => 333.0,
132 => 500.0,
148 => 500.0,
187 => 500.0,
133 => 1000.0,
137 => 1000.0,
191 => 500.0,
96 => 333.0,
180 => 333.0,
136 => 333.0,
152 => 333.0,
175 => 333.0,
'breve' => 333.0,
'dotaccent' => 333.0,
168 => 333.0,
'ring' => 333.0,
184 => 333.0,
'hungarumlaut' => 333.0,
'ogonek' => 333.0,
'caron' => 333.0,
151 => 1000.0,
198 => 1000.0,
170 => 300.0,
'Lslash' => 667.0,
216 => 778.0,
140 => 1000.0,
186 => 330.0,
230 => 722.0,
'dotlessi' => 278.0,
'lslash' => 278.0,
248 => 500.0,
156 => 722.0,
223 => 556.0,
207 => 389.0,
233 => 444.0,
'abreve' => 500.0,
'uhungarumlaut' => 556.0,
'ecaron' => 444.0,
159 => 722.0,
247 => 570.0,
221 => 722.0,
194 => 722.0,
225 => 500.0,
219 => 722.0,
253 => 500.0,
'scommaaccent' => 389.0,
234 => 444.0,
'Uring' => 722.0,
220 => 722.0,
'aogonek' => 500.0,
218 => 722.0,
'uogonek' => 556.0,
203 => 667.0,
'Dcroat' => 722.0,
'commaaccent' => 250.0,
169 => 747.0,
'Emacron' => 667.0,
'ccaron' => 444.0,
229 => 500.0,
'Ncommaaccent' => 722.0,
'lacute' => 278.0,
224 => 500.0,
'Tcommaaccent' => 667.0,
'Cacute' => 722.0,
227 => 500.0,
'Edotaccent' => 667.0,
154 => 389.0,
'scedilla' => 389.0,
237 => 278.0,
'lozenge' => 494.0,
'Rcaron' => 722.0,
'Gcommaaccent' => 778.0,
251 => 556.0,
226 => 500.0,
'Amacron' => 722.0,
'rcaron' => 444.0,
231 => 444.0,
'Zdotaccent' => 667.0,
222 => 611.0,
'Omacron' => 778.0,
'Racute' => 722.0,
'Sacute' => 556.0,
'dcaron' => 672.0,
'Umacron' => 722.0,
'uring' => 556.0,
179 => 300.0,
210 => 778.0,
192 => 722.0,
'Abreve' => 722.0,
215 => 570.0,
250 => 556.0,
'Tcaron' => 667.0,
'partialdiff' => 494.0,
255 => 500.0,
'Nacute' => 722.0,
238 => 278.0,
202 => 667.0,
228 => 500.0,
235 => 444.0,
'cacute' => 444.0,
'nacute' => 556.0,
'umacron' => 556.0,
'Ncaron' => 722.0,
205 => 389.0,
177 => 570.0,
166 => 220.0,
174 => 747.0,
'Gbreve' => 778.0,
'Idotaccent' => 389.0,
'summation' => 600.0,
200 => 667.0,
'racute' => 444.0,
'omacron' => 500.0,
'Zacute' => 667.0,
142 => 667.0,
'greaterequal' => 549.0,
208 => 722.0,
199 => 722.0,
'lcommaaccent' => 278.0,
'tcaron' => 416.0,
'eogonek' => 444.0,
'Uogonek' => 722.0,
193 => 722.0,
196 => 722.0,
232 => 444.0,
'zacute' => 444.0,
'iogonek' => 278.0,
211 => 778.0,
243 => 500.0,
'amacron' => 500.0,
'sacute' => 389.0,
239 => 278.0,
212 => 778.0,
217 => 722.0,
'Delta' => 612.0,
254 => 556.0,
178 => 300.0,
214 => 778.0,
181 => 556.0,
236 => 278.0,
'ohungarumlaut' => 500.0,
'Eogonek' => 667.0,
'dcroat' => 556.0,
190 => 750.0,
'Scedilla' => 556.0,
'lcaron' => 394.0,
'Kcommaaccent' => 778.0,
'Lacute' => 667.0,
153 => 1000.0,
'edotaccent' => 444.0,
204 => 389.0,
'Imacron' => 389.0,
'Lcaron' => 667.0,
189 => 750.0,
'lessequal' => 549.0,
244 => 500.0,
241 => 556.0,
'Uhungarumlaut' => 722.0,
201 => 667.0,
'emacron' => 444.0,
'gbreve' => 500.0,
188 => 750.0,
138 => 556.0,
'Scommaaccent' => 556.0,
'Ohungarumlaut' => 778.0,
176 => 400.0,
242 => 500.0,
'Ccaron' => 722.0,
249 => 556.0,
'radical' => 549.0,
'Dcaron' => 722.0,
'rcommaaccent' => 444.0,
209 => 722.0,
245 => 500.0,
'Rcommaaccent' => 722.0,
'Lcommaaccent' => 667.0,
195 => 722.0,
'Aogonek' => 722.0,
197 => 722.0,
213 => 778.0,
'zdotaccent' => 444.0,
'Ecaron' => 667.0,
'Iogonek' => 389.0,
'kcommaaccent' => 556.0,
'minus' => 570.0,
206 => 389.0,
'ncaron' => 556.0,
'tcommaaccent' => 333.0,
172 => 570.0,
246 => 500.0,
252 => 556.0,
'notequal' => 549.0,
'gcommaaccent' => 500.0,
240 => 500.0,
158 => 444.0,
'ncommaaccent' => 556.0,
185 => 300.0,
'imacron' => 278.0,
128 => 500.0,
),
'CIDtoGID_Compressed' => true,
'CIDtoGID' => 'eJwDAAAAAAE=',
'_version_' => 6,
);

View File

@ -0,0 +1,572 @@
<?php return array (
'codeToName' =>
array (
32 => 'space',
160 => 'space',
33 => 'exclam',
34 => 'quotedbl',
35 => 'numbersign',
36 => 'dollar',
37 => 'percent',
38 => 'ampersand',
146 => 'quoteright',
40 => 'parenleft',
41 => 'parenright',
42 => 'asterisk',
43 => 'plus',
44 => 'comma',
45 => 'hyphen',
173 => 'hyphen',
46 => 'period',
47 => 'slash',
48 => 'zero',
49 => 'one',
50 => 'two',
51 => 'three',
52 => 'four',
53 => 'five',
54 => 'six',
55 => 'seven',
56 => 'eight',
57 => 'nine',
58 => 'colon',
59 => 'semicolon',
60 => 'less',
61 => 'equal',
62 => 'greater',
63 => 'question',
64 => 'at',
65 => 'A',
66 => 'B',
67 => 'C',
68 => 'D',
69 => 'E',
70 => 'F',
71 => 'G',
72 => 'H',
73 => 'I',
74 => 'J',
75 => 'K',
76 => 'L',
77 => 'M',
78 => 'N',
79 => 'O',
80 => 'P',
81 => 'Q',
82 => 'R',
83 => 'S',
84 => 'T',
85 => 'U',
86 => 'V',
87 => 'W',
88 => 'X',
89 => 'Y',
90 => 'Z',
91 => 'bracketleft',
92 => 'backslash',
93 => 'bracketright',
94 => 'asciicircum',
95 => 'underscore',
145 => 'quoteleft',
97 => 'a',
98 => 'b',
99 => 'c',
100 => 'd',
101 => 'e',
102 => 'f',
103 => 'g',
104 => 'h',
105 => 'i',
106 => 'j',
107 => 'k',
108 => 'l',
109 => 'm',
110 => 'n',
111 => 'o',
112 => 'p',
113 => 'q',
114 => 'r',
115 => 's',
116 => 't',
117 => 'u',
118 => 'v',
119 => 'w',
120 => 'x',
121 => 'y',
122 => 'z',
123 => 'braceleft',
124 => 'bar',
125 => 'braceright',
126 => 'asciitilde',
161 => 'exclamdown',
162 => 'cent',
163 => 'sterling',
165 => 'yen',
131 => 'florin',
167 => 'section',
164 => 'currency',
39 => 'quotesingle',
147 => 'quotedblleft',
171 => 'guillemotleft',
139 => 'guilsinglleft',
155 => 'guilsinglright',
150 => 'endash',
134 => 'dagger',
135 => 'daggerdbl',
183 => 'periodcentered',
182 => 'paragraph',
149 => 'bullet',
130 => 'quotesinglbase',
132 => 'quotedblbase',
148 => 'quotedblright',
187 => 'guillemotright',
133 => 'ellipsis',
137 => 'perthousand',
191 => 'questiondown',
96 => 'grave',
180 => 'acute',
136 => 'circumflex',
152 => 'tilde',
175 => 'macron',
168 => 'dieresis',
184 => 'cedilla',
151 => 'emdash',
198 => 'AE',
170 => 'ordfeminine',
216 => 'Oslash',
140 => 'OE',
186 => 'ordmasculine',
230 => 'ae',
248 => 'oslash',
156 => 'oe',
223 => 'germandbls',
207 => 'Idieresis',
233 => 'eacute',
159 => 'Ydieresis',
247 => 'divide',
221 => 'Yacute',
194 => 'Acircumflex',
225 => 'aacute',
219 => 'Ucircumflex',
253 => 'yacute',
234 => 'ecircumflex',
220 => 'Udieresis',
218 => 'Uacute',
203 => 'Edieresis',
169 => 'copyright',
229 => 'aring',
224 => 'agrave',
227 => 'atilde',
154 => 'scaron',
237 => 'iacute',
251 => 'ucircumflex',
226 => 'acircumflex',
231 => 'ccedilla',
222 => 'Thorn',
179 => 'threesuperior',
210 => 'Ograve',
192 => 'Agrave',
215 => 'multiply',
250 => 'uacute',
255 => 'ydieresis',
238 => 'icircumflex',
202 => 'Ecircumflex',
228 => 'adieresis',
235 => 'edieresis',
205 => 'Iacute',
177 => 'plusminus',
166 => 'brokenbar',
174 => 'registered',
200 => 'Egrave',
142 => 'Zcaron',
208 => 'Eth',
199 => 'Ccedilla',
193 => 'Aacute',
196 => 'Adieresis',
232 => 'egrave',
211 => 'Oacute',
243 => 'oacute',
239 => 'idieresis',
212 => 'Ocircumflex',
217 => 'Ugrave',
254 => 'thorn',
178 => 'twosuperior',
214 => 'Odieresis',
181 => 'mu',
236 => 'igrave',
190 => 'threequarters',
153 => 'trademark',
204 => 'Igrave',
189 => 'onehalf',
244 => 'ocircumflex',
241 => 'ntilde',
201 => 'Eacute',
188 => 'onequarter',
138 => 'Scaron',
176 => 'degree',
242 => 'ograve',
249 => 'ugrave',
209 => 'Ntilde',
245 => 'otilde',
195 => 'Atilde',
197 => 'Aring',
213 => 'Otilde',
206 => 'Icircumflex',
172 => 'logicalnot',
246 => 'odieresis',
252 => 'udieresis',
240 => 'eth',
158 => 'zcaron',
185 => 'onesuperior',
128 => 'Euro',
),
'isUnicode' => false,
'FontName' => 'Times-Roman',
'FullName' => 'Times Roman',
'FamilyName' => 'Times',
'Weight' => 'Roman',
'ItalicAngle' => '0',
'IsFixedPitch' => 'false',
'CharacterSet' => 'ExtendedRoman',
'FontBBox' =>
array (
0 => '-168',
1 => '-218',
2 => '1000',
3 => '898',
),
'UnderlinePosition' => '-100',
'UnderlineThickness' => '50',
'Version' => '002.00',
'EncodingScheme' => 'WinAnsiEncoding',
'CapHeight' => '662',
'XHeight' => '450',
'Ascender' => '683',
'Descender' => '-217',
'StdHW' => '28',
'StdVW' => '84',
'StartCharMetrics' => '317',
'C' =>
array (
32 => 250.0,
160 => 250.0,
33 => 333.0,
34 => 408.0,
35 => 500.0,
36 => 500.0,
37 => 833.0,
38 => 778.0,
146 => 333.0,
40 => 333.0,
41 => 333.0,
42 => 500.0,
43 => 564.0,
44 => 250.0,
45 => 333.0,
173 => 333.0,
46 => 250.0,
47 => 278.0,
48 => 500.0,
49 => 500.0,
50 => 500.0,
51 => 500.0,
52 => 500.0,
53 => 500.0,
54 => 500.0,
55 => 500.0,
56 => 500.0,
57 => 500.0,
58 => 278.0,
59 => 278.0,
60 => 564.0,
61 => 564.0,
62 => 564.0,
63 => 444.0,
64 => 921.0,
65 => 722.0,
66 => 667.0,
67 => 667.0,
68 => 722.0,
69 => 611.0,
70 => 556.0,
71 => 722.0,
72 => 722.0,
73 => 333.0,
74 => 389.0,
75 => 722.0,
76 => 611.0,
77 => 889.0,
78 => 722.0,
79 => 722.0,
80 => 556.0,
81 => 722.0,
82 => 667.0,
83 => 556.0,
84 => 611.0,
85 => 722.0,
86 => 722.0,
87 => 944.0,
88 => 722.0,
89 => 722.0,
90 => 611.0,
91 => 333.0,
92 => 278.0,
93 => 333.0,
94 => 469.0,
95 => 500.0,
145 => 333.0,
97 => 444.0,
98 => 500.0,
99 => 444.0,
100 => 500.0,
101 => 444.0,
102 => 333.0,
103 => 500.0,
104 => 500.0,
105 => 278.0,
106 => 278.0,
107 => 500.0,
108 => 278.0,
109 => 778.0,
110 => 500.0,
111 => 500.0,
112 => 500.0,
113 => 500.0,
114 => 333.0,
115 => 389.0,
116 => 278.0,
117 => 500.0,
118 => 500.0,
119 => 722.0,
120 => 500.0,
121 => 500.0,
122 => 444.0,
123 => 480.0,
124 => 200.0,
125 => 480.0,
126 => 541.0,
161 => 333.0,
162 => 500.0,
163 => 500.0,
'fraction' => 167.0,
165 => 500.0,
131 => 500.0,
167 => 500.0,
164 => 500.0,
39 => 180.0,
147 => 444.0,
171 => 500.0,
139 => 333.0,
155 => 333.0,
'fi' => 556.0,
'fl' => 556.0,
150 => 500.0,
134 => 500.0,
135 => 500.0,
183 => 250.0,
182 => 453.0,
149 => 350.0,
130 => 333.0,
132 => 444.0,
148 => 444.0,
187 => 500.0,
133 => 1000.0,
137 => 1000.0,
191 => 444.0,
96 => 333.0,
180 => 333.0,
136 => 333.0,
152 => 333.0,
175 => 333.0,
'breve' => 333.0,
'dotaccent' => 333.0,
168 => 333.0,
'ring' => 333.0,
184 => 333.0,
'hungarumlaut' => 333.0,
'ogonek' => 333.0,
'caron' => 333.0,
151 => 1000.0,
198 => 889.0,
170 => 276.0,
'Lslash' => 611.0,
216 => 722.0,
140 => 889.0,
186 => 310.0,
230 => 667.0,
'dotlessi' => 278.0,
'lslash' => 278.0,
248 => 500.0,
156 => 722.0,
223 => 500.0,
207 => 333.0,
233 => 444.0,
'abreve' => 444.0,
'uhungarumlaut' => 500.0,
'ecaron' => 444.0,
159 => 722.0,
247 => 564.0,
221 => 722.0,
194 => 722.0,
225 => 444.0,
219 => 722.0,
253 => 500.0,
'scommaaccent' => 389.0,
234 => 444.0,
'Uring' => 722.0,
220 => 722.0,
'aogonek' => 444.0,
218 => 722.0,
'uogonek' => 500.0,
203 => 611.0,
'Dcroat' => 722.0,
'commaaccent' => 250.0,
169 => 760.0,
'Emacron' => 611.0,
'ccaron' => 444.0,
229 => 444.0,
'Ncommaaccent' => 722.0,
'lacute' => 278.0,
224 => 444.0,
'Tcommaaccent' => 611.0,
'Cacute' => 667.0,
227 => 444.0,
'Edotaccent' => 611.0,
154 => 389.0,
'scedilla' => 389.0,
237 => 278.0,
'lozenge' => 471.0,
'Rcaron' => 667.0,
'Gcommaaccent' => 722.0,
251 => 500.0,
226 => 444.0,
'Amacron' => 722.0,
'rcaron' => 333.0,
231 => 444.0,
'Zdotaccent' => 611.0,
222 => 556.0,
'Omacron' => 722.0,
'Racute' => 667.0,
'Sacute' => 556.0,
'dcaron' => 588.0,
'Umacron' => 722.0,
'uring' => 500.0,
179 => 300.0,
210 => 722.0,
192 => 722.0,
'Abreve' => 722.0,
215 => 564.0,
250 => 500.0,
'Tcaron' => 611.0,
'partialdiff' => 476.0,
255 => 500.0,
'Nacute' => 722.0,
238 => 278.0,
202 => 611.0,
228 => 444.0,
235 => 444.0,
'cacute' => 444.0,
'nacute' => 500.0,
'umacron' => 500.0,
'Ncaron' => 722.0,
205 => 333.0,
177 => 564.0,
166 => 200.0,
174 => 760.0,
'Gbreve' => 722.0,
'Idotaccent' => 333.0,
'summation' => 600.0,
200 => 611.0,
'racute' => 333.0,
'omacron' => 500.0,
'Zacute' => 611.0,
142 => 611.0,
'greaterequal' => 549.0,
208 => 722.0,
199 => 667.0,
'lcommaaccent' => 278.0,
'tcaron' => 326.0,
'eogonek' => 444.0,
'Uogonek' => 722.0,
193 => 722.0,
196 => 722.0,
232 => 444.0,
'zacute' => 444.0,
'iogonek' => 278.0,
211 => 722.0,
243 => 500.0,
'amacron' => 444.0,
'sacute' => 389.0,
239 => 278.0,
212 => 722.0,
217 => 722.0,
'Delta' => 612.0,
254 => 500.0,
178 => 300.0,
214 => 722.0,
181 => 500.0,
236 => 278.0,
'ohungarumlaut' => 500.0,
'Eogonek' => 611.0,
'dcroat' => 500.0,
190 => 750.0,
'Scedilla' => 556.0,
'lcaron' => 344.0,
'Kcommaaccent' => 722.0,
'Lacute' => 611.0,
153 => 980.0,
'edotaccent' => 444.0,
204 => 333.0,
'Imacron' => 333.0,
'Lcaron' => 611.0,
189 => 750.0,
'lessequal' => 549.0,
244 => 500.0,
241 => 500.0,
'Uhungarumlaut' => 722.0,
201 => 611.0,
'emacron' => 444.0,
'gbreve' => 500.0,
188 => 750.0,
138 => 556.0,
'Scommaaccent' => 556.0,
'Ohungarumlaut' => 722.0,
176 => 400.0,
242 => 500.0,
'Ccaron' => 667.0,
249 => 500.0,
'radical' => 453.0,
'Dcaron' => 722.0,
'rcommaaccent' => 333.0,
209 => 722.0,
245 => 500.0,
'Rcommaaccent' => 667.0,
'Lcommaaccent' => 611.0,
195 => 722.0,
'Aogonek' => 722.0,
197 => 722.0,
213 => 722.0,
'zdotaccent' => 444.0,
'Ecaron' => 611.0,
'Iogonek' => 333.0,
'kcommaaccent' => 500.0,
'minus' => 564.0,
206 => 333.0,
'ncaron' => 500.0,
'tcommaaccent' => 278.0,
172 => 564.0,
246 => 500.0,
252 => 500.0,
'notequal' => 549.0,
'gcommaaccent' => 500.0,
240 => 500.0,
158 => 444.0,
'ncommaaccent' => 500.0,
185 => 300.0,
'imacron' => 278.0,
128 => 500.0,
),
'CIDtoGID_Compressed' => true,
'CIDtoGID' => 'eJwDAAAAAAE=',
'_version_' => 6,
);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606732176;_ci_previous_url|s:58:"http://localhost/donation/PdfController/download_receipt/3";logged_user|s:1:"3";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606754260;_ci_previous_url|s:26:"http://localhost/donation/";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606465170;_ci_previous_url|s:48:"http://localhost/donation/Dashboard/last_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606648228;_ci_previous_url|s:26:"http://localhost/donation/";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606558584;_ci_previous_url|s:50:"http://localhost/donation/Dashboard/view_receipt/2";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606647509;_ci_previous_url|s:26:"http://localhost/donation/";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606457012;_ci_previous_url|s:48:"http://localhost/donation/Dashboard/last_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606735929;_ci_previous_url|s:26:"http://localhost/donation/";logged_user|s:1:"3";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606714995;_ci_previous_url|s:50:"http://localhost/donation/Dashboard/view_receipt/2";logged_user|s:1:"3";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606540379;_ci_previous_url|s:26:"http://localhost/donation/";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606649790;_ci_previous_url|s:26:"http://localhost/donation/";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606800297;_ci_previous_url|s:50:"http://localhost/donation/dashboard/donation_cause";logged_user|s:1:"3";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606455559;_ci_previous_url|s:47:"http://localhost/donation/Dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606544658;_ci_previous_url|s:50:"http://localhost/donation/Dashboard/view_receipt/1";logged_user|s:1:"3";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606796691;_ci_previous_url|s:26:"http://localhost/donation/";logged_user|s:1:"3";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606483368;_ci_previous_url|s:26:"http://localhost/donation/";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606146168;_ci_previous_url|s:26:"http://localhost/donation/";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606490404;_ci_previous_url|s:48:"http://localhost/donation/Dashboard/last_receipt";logged_user|s:1:"3";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606187920;_ci_previous_url|s:26:"http://localhost/donation/";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606544658;_ci_previous_url|s:50:"http://localhost/donation/Dashboard/view_receipt/1";logged_user|s:1:"3";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606393060;_ci_previous_url|s:47:"http://localhost/donation/dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606377497;_ci_previous_url|s:47:"http://localhost/donation/dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606471748;_ci_previous_url|s:47:"http://localhost/donation/dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606202813;_ci_previous_url|s:47:"http://localhost/donation/dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606494415;_ci_previous_url|s:48:"http://localhost/donation/Dashboard/last_receipt";logged_user|s:1:"3";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606645674;_ci_previous_url|s:47:"http://localhost/donation/dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606754098;logged_user|s:1:"3";_ci_previous_url|s:48:"http://localhost/donation/Dashboard/last_receipt";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606391806;_ci_previous_url|s:47:"http://localhost/donation/dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606469848;_ci_previous_url|s:47:"http://localhost/donation/dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606639910;_ci_previous_url|s:47:"http://localhost/donation/dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606217836;_ci_previous_url|s:47:"http://localhost/donation/dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606643605;_ci_previous_url|s:47:"http://localhost/donation/dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606647196;_ci_previous_url|s:26:"http://localhost/donation/";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606455239;_ci_previous_url|s:47:"http://localhost/donation/Dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606493436;_ci_previous_url|s:48:"http://localhost/donation/Dashboard/last_receipt";logged_user|s:1:"3";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606794119;_ci_previous_url|s:26:"http://localhost/donation/";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606276768;_ci_previous_url|s:26:"http://localhost/donation/";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606142340;_ci_previous_url|s:50:"http://localhost/donation/dashboard/donation_cause";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606568472;_ci_previous_url|s:33:"http://localhost/donation/receipt";logged_user|s:1:"3";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606218669;_ci_previous_url|s:47:"http://localhost/donation/dashboard/all_receipt";logged_user|s:1:"1";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606312652;_ci_previous_url|s:26:"http://localhost/donation/";

View File

@ -0,0 +1 @@
__ci_last_regenerate|i:1606143230;_ci_previous_url|s:44:"http://localhost/donation/add_donation_cause";logged_user|s:1:"1";

Some files were not shown because too many files have changed in this diff Show More