private static function ShareaholicContentSettings::unserialize_settings in Share Buttons, Related Posts, Content Analytics - Shareaholic 8
Same name and namespace in other branches
- 7.3 content_settings.php \ShareaholicContentSettings::unserialize_settings()
Get an unserialized version of the content settings
Parameters
Object $node The node with settings to serialize:
Return value
String the string representation of the settings
1 call to ShareaholicContentSettings::unserialize_settings()
- ShareaholicContentSettings::load in ./
content_settings.php - Load the content settings from the database and attach to each node object
File
- ./
content_settings.php, line 161
Class
- ShareaholicContentSettings
- An interface to the Shareaholic Content Settings database table
Code
private static function unserialize_settings($node) {
return unserialize($node->settings);
}