https://github.com/PressForward/pressforward
Raw File
Tip revision: fe889623f9b555a8f54f8565fcb0e098cd7c5ca2 authored by Aram Zucker-Scharff on 18 November 2018, 18:04:11 UTC
Adjusting as Travis cannot use the master version of WP
Tip revision: fe88962
PF_to_WP_System.php
<?php
namespace PressForward\Controllers;

use PressForward\Interfaces\System as System;

class PF_to_WP_System implements System {

	public function add_option( $option, $value = '', $autoload = 'yes' ) {
		return add_option( $option, $value, '', $autoload );
	}
	public function delete_option( $option ) {
		return delete_option( $option );
	}
	public function get_option( $option, $default ) {
		return get_option( $option, $default );
	}
	public function update_option( $option, $value = '', $autoload = 'yes' ) {
		return update_option( $option, $value, $autoload );
	}
	public function apply_filters( $tag, $values ) {
		return apply_filters( $tag, $value );
	}
	public function add_action( $tag, $value ) {
		return add_action( $tag, $value );
	}
	public function get_the_guid( $id ) {
		return get_the_guid( $id );
	}
	public function get_site_info( $info_type ){
		return get_bloginfo( $info_type );
	}

}
back to top