Main Koha release repository
https://koha-community.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
412 B
22 lines
412 B
package CGI::Session::Serialize::yamlxs;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use CGI::Session::ErrorHandler;
|
|
use YAML::XS;
|
|
|
|
$CGI::Session::Serialize::yamlxs::VERSION = '0.1';
|
|
@CGI::Session::Serialize::yamlxs::ISA = ( "CGI::Session::ErrorHandler" );
|
|
|
|
sub freeze {
|
|
my ($self, $data) = @_;
|
|
return YAML::XS::Dump($data);
|
|
}
|
|
|
|
sub thaw {
|
|
my ($self, $string) = @_;
|
|
return (YAML::XS::Load($string))[0];
|
|
}
|
|
|
|
1;
|
|
|