diff --git a/core/modules/serialization/serialization.module b/core/modules/serialization/serialization.module index b3d9bbc..66ce697 100644 --- a/core/modules/serialization/serialization.module +++ b/core/modules/serialization/serialization.module @@ -1 +1,17 @@ ' . t('About') . ''; + $output .= '

' . t('The Serialization module provides a service for serializing and deserializing data to and from formats such as JSON and XML.') . '

'; + $output .= '

' . t('Serialization is the process of converting data structures like arrays and objects into a string. This allows the data to be represented in a way that is easy to exchange and store (e.g., for transmission over the Internet or for storage in a local file system). These representations can then be deserialized to get back to the original data structures.') . '

'; + $output .= '

' . t('The serializer has Normalizers and Denormalizers to get data to and from a normalized array. It also has Encoders and Decoders that convert the serialized data from and to the normalized data') . '

'; + $output .= '

' . t('For more information, see the online documentation for the Serialization module.', array('!doc_url' => 'https://drupal.org/documentation/modules/serialization')) . '

'; + return $output; + } +}