https://github.com/PressForward/pressforward
Raw File
Tip revision: b12ed91bc001da0049902ca1fd3c13afa8a72189 authored by Aram Zucker-Scharff on 02 January 2017, 19:05:39 UTC
Removing has actions now that HTTPTools doesn't have actions
Tip revision: b12ed91
System.php
<?php
namespace PressForward\Interfaces;
interface System
{
    public function add_option($option, $value = '', $autoload = 'yes' );
    public function delete_option($option);
	public function get_option($option, $default);
	public function update_option($option, $value = '', $autoload = 'yes' );
	public function apply_filters( $tag, $values );
	public function add_action( $tag, $value );
	public function get_the_guid( $id );
}
back to top