You are here

function csl_locale::__sleep in Bibliography Module 6.2

Same name and namespace in other branches
  1. 7 modules/CiteProc/CSL.inc \csl_locale::__sleep()
  2. 7.2 modules/CiteProc/CSL.inc \csl_locale::__sleep()

File

modules/CiteProc/CSL.inc, line 1555

Class

csl_locale

Code

function __sleep() {
  $this->locale_xmlstring = $this->locale ? $this->locale
    ->asXML() : '';
  $this->style_locale_xmlstring = $this->style_locale ? $this->style_locale
    ->asXML() : '';
  return array(
    'locale_xmlstring',
    'style_locale_xmlstring',
  );
}