%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Preferences/ |
Current File : //var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/Preferences/Site.php |
<?php namespace AC\Preferences; use AC\Preferences; class Site extends Preferences { /** * return array|false */ protected function load() { return get_user_option( $this->get_key(), $this->get_user_id() ); } /** * @return bool */ public function save() { return (bool) update_user_option( $this->get_user_id(), $this->get_key(), $this->data ); } }