Your IP : 216.73.217.154


Current Path : /home/ereika83/public_html/wp-content/plugins/squirrly-seo/models/domain/
Upload File :
Current File : /home/ereika83/public_html/wp-content/plugins/squirrly-seo/models/domain/FocusPage.php

<?php
defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );

class SQ_Models_Domain_FocusPage extends SQ_Models_Abstract_Domain {

	protected $_id;
	protected $_user_post_id;
	protected $_post_id;
	protected $_hash;
	protected $_permalink;
	protected $_audit;
	protected $_stats;

	protected $_incomplete = 0;
	protected $_visibility = 'N/A';
	protected $_indexed;
	//--
	protected $_audit_datetime;
	protected $_audit_error;
	protected $_datetime;

	protected $_wppost;

	/**
	 * Get the Local Post ID
	 *
	 * @return bool
	 */
	public function getId() {
		if ( ! isset( $this->_id ) ) {
			if ( $post = $this->getWppost() ) {
				$this->_id = $this->_user_post_id;
			}
		}

		return $this->_id;
	}

	public function getHash() {
		if ( ! isset( $this->_hash ) ) {
			if ( $post = $this->getWppost() ) {
				$this->_hash = $post->hash;
			}
		}

		return $this->_hash;
	}

	public function getAudit() {
		if ( ! isset( $this->_audit ) ) {
			$this->_audit = (object) array();
		}

		$this->_audit->permalink = $this->_permalink;

		return $this->_audit;
	}

	public function getInnerlinks() {
		if ( ! isset( $this->_innerlinks ) ) {
			$args            = array();
			$args['post_id'] = $this->id;
			if ( $innerlinks = SQ_Classes_RemoteController::getFocusPageInnerlinks( $args ) ) {
				if ( ! is_wp_error( $innerlinks ) ) {
					$this->_innerlinks = array();
				}
			}
		}

		return $this->_innerlinks;
	}

	/**
	 * Get the local post
	 *
	 * @return SQ_Models_Domain_Post|false
	 */
	public function getWppost() {

		if ( ! isset( $this->_wppost->ID ) ) {
			if ( isset( $this->_post_id ) && $this->_post_id > 0 ) {
				if ( $this->_wppost = SQ_Classes_ObjController::getClass( 'SQ_Models_Snippet' )->setPostByID( $this->_post_id ) ) {
					$this->_wppost->sq_adm; //call sq object to populate
				}
			}
		}


		if ( ! isset( $this->_wppost->ID ) ) {
			if ( isset( $this->_permalink ) && $this->_permalink <> '' ) {
				if ( $this->_wppost = SQ_Classes_ObjController::getClass( 'SQ_Models_Snippet' )->setPostByURL( $this->_permalink ) ) {
					$this->_wppost->sq_adm; //call sq object to populate
				}
			}
		}

		//All params for the hook $post_id, $term_id, $taxonomy, $post_type
		return apply_filters( 'sq_wppost', $this->_wppost, $this->_post_id, 0, '', '' );
	}
}