Σ(゚Д゚;≡;゚д゚)Σ(゚Д゚;≡;゚д゚)Σ(゚Д゚;≡;゚д゚)始,故人唐宰相鲁公,🆚开府南服,余以布衣从戎。明年,别公漳水湄。后明年,公以事过张睢阳庙及颜杲卿所尝往来处,悲歌慷慨,卒不负其言而从之游。今其诗具在,可考也。😭
<?php
abstract class ET_Core_API_SocialNetwork extends ET_Core_API_Service {
public function __construct( $owner = '', $account_name = '' ) {
$this->service_type = 'social';
parent::__construct( $owner, $account_name );
}
/**
* @inheritDoc
*/
protected function _get_data_keys() {
// Implement _get_data_keys() method.
}
/**
* @inheritDoc
*/
public function get_account_fields() {
// Implement get_fields() method.
}
/**
* @inheritDoc
*/
protected function _get_accounts_data() {
// Implement _get_accounts_data() method.
}
/**
* @inheritDoc
*/
public function get_data_keymap( $keymap = array(), $custom_fields_key = '' ) {
// Implement get_data_keymap() method.
}
/**
* @inheritDoc
*/
public function save_data() {
// Implement save_data() method.
}
}