Current Path : /var/www/ooareogundevinitiative/wp-content/plugins/brizy/editor/storage/ |
Current File : /var/www/ooareogundevinitiative/wp-content/plugins/brizy/editor/storage/common.php |
<?php if ( ! defined( 'ABSPATH' ) ) { die( 'Direct access forbidden.' ); } class Brizy_Editor_Storage_Common extends Brizy_Editor_Storage_Abstract { const KEY = 'brizy'; /** * @return Brizy_Editor_Storage_Common */ public static function instance() { static $instance; if ( ! $instance ) { $instance = new self(); } return $instance; } /** * @return array */ public function get_storage() { $get_option = (array) get_option( $this->key(), array() ); return $get_option; } /** * @param array $storage * * @return $this */ protected function update_storage( $storage ) { update_option( $this->key(), $storage ); return $this; } protected function key() { return self::KEY; } }