You are here

public function DatexObject::__toString in Datex 7

Same name and namespace in other branches
  1. 7.2 datex_api/datex_api.class.inc \DatexObject::__toString()

Magic Function toString.

Returns date stored in this function, Formatted according to internal format string, As an string.

File

datex_api/datex_api_classes.inc, line 666
API and helper functions used by other datex modules.

Class

DatexObject
This class is Jalali equivilant of php DateTime. It also has some functionallity from object defiend in Drupal's date module DateObject.

Code

public function __toString() {
  return $this
    ->format();
}