Skip to content

msajadi824/simple-date-bundle

Repository files navigation

pouyasoft_ir/simple-date-bundle

A bundle for persian date in Symfony2

Install

  • Install via Composer:
$ php composer require pouyasoft_ir/simple-date-bundle

Service

Service Name: pouya_soft.j_sdate_service

Functions:

  • georgianToPersian:
    Convert Georgian calendar (DateTime) To Persian (String).
    Parameters:
    • georgian: DateTime (default: null)
    • format: string (default: yyyy/MM/dd) View Intl Format
    • locale: string (default: fa) (e.g. fa, fa_IR, en, en_US, en_UK, ...)
    • calendar: string (default: persian) (e.g. gregorian, persian, islamic, ...)
    • latinizeDigit: bool (default: false) Convert Persian numbers to Latin Numbers.
  • persianToGeorgian:
    Convert Persian calendar (String) To Georgian (DateTime).
    Parameters:
    • persian: string
    • format: string (default: yyyy/MM/dd) View Intl Format
    • locale: string (default: fa) (e.g. fa, fa_IR, en, en_US, en_UK, ...)
    • calendar: string (default: persian) (e.g. gregorian, persian, islamic, ...)
  • intlDateTimeInstance:
    Return new Instance of IntlDateTime. Visit Blog of Ali Farhadi

Sample:

$shamsiString = $this->get('pouya_soft.j_sdate_service')->georgianToPersian(new \DateTime(), 'yyyy-MM-dd E');
//result: ۱۳۹۴-۱۱-۲۲ دوشنبه
$shamsiString = $this->get('pouya_soft.j_sdate_service')->persianToGeorgian('1394-11-22 دوشنبه', 'yyyy-MM-dd E');
//result: An instance of DateTime

Twig

Functions:

  • gpDate:
    Convert Georgian calendar (DateTime) To Persian (String).
    Parameters:
    • georgian: DateTime (default: null)
    • format: string (default: yyyy/MM/dd) View Intl Format
    • locale: string (default: fa) (e.g. fa, fa_IR, en, en_US, en_UK, ...)
    • calendar: string (default: persian) (e.g. gregorian, persian, islamic, ...)
    • latinizeDigit: bool (default: false) Convert Persian numbers to Latin Numbers.
  • pgDate:
    Convert Persian calendar (String) To Georgian (DateTime).
    Parameters:
    • persian: string
    • format: string (default: yyyy/MM/dd) View Intl Format
    • locale: string (default: fa) (e.g. fa, fa_IR, en, en_US, en_UK, ...)
    • calendar: string (default: persian) (e.g. gregorian, persian, islamic, ...)

Sample:

{{ date|gpDate }} <br>
{{ date|gpDate('yyyy-MM-dd E') }} <br>
{{ '1394/11/22'|gpDate }} <br>
{{ '1394-11-22 دوشنبه'|gpDate('yyyy-MM-dd E') }} <br>

Form

Type Name: PouyaSoftSDateType

Parameters:

  • serverFormat: string (default: yyyy/MM/dd) View Intl Format
  • clientFormat: string (default: yy/m/d) View DatePicker Format
  • attr: array
    You can add other DatePicker options to this param, but must change uppercase letters to lower and add dash before it. (see Samples)

note: Result of serverFormat and clientFormat, must be the same.

Sample:

$builder
    ->add('date', PouyaSoftSDateType::class, [
        'serverFormat' => 'yyyy/MM/dd',
        'pickerOptions' => [
            'Format' => 'yyyy/MM/dd',
            'EnableTimePicker' => true,
            'GroupId' => 'group1',
            'FromDate' => true,
            'DisableBeforeToday' => true,
        ]
    ])
    ->add('date2', PouyaSoftSDateType::class, [
        'serverFormat' => 'yyyy-MM-dd E',
        'pickerOptions' => [
            'Format' => 'yyyy/MM/dd',
            'EnableTimePicker' => true,
            'GroupId' => 'group1',
            'ToDate' => true,
        ]
    ])

Date Picker

Requirements:

  • Bootstrap
  • Jquery

Add this lines to head tag in base.html.twig file:

<head>
    ...
	
    <link rel="stylesheet" href="{{ asset('bundles/pouyasoftsdate/MdBootstrapPersianDateTimePicker/jquery.md.bootstrap.datetimepicker.style.css') }}" />
    ...
</head>

Add this lines to end of body tag in base.html.twig file:

<script type="text/javascript" src="{{ asset('bundles/pouyasoftsdate/MdBootstrapPersianDateTimePicker/jquery.md.bootstrap.datetimepicker.js') }}"></script>

Add this lines to app/config.yml file:

twig:
    form_themes:
        - 'PouyaSoftSDateBundle:Form:form_s_date.html.twig'

References: