<?php

class PostsController extends AppController
{
  var $name = 'Posts';

  var $components = array('Arabic'); //import the Arabic Component

  function index()
  {
    $this->arabic->load('Date');
    $text = $this->arabic->date('l dS F Y h:i:s A', time());
    $this->set('hijri_date', $text);

    $this->arabic->load('Transliteration');
    $text = $this->arabic->en2ar('Hillary Clinton');
    $this->set('name', $text);

    $this->set('posts', $this->Post->find('all'));
  }

}

?>