# polylang/1.9.2/include/static-pages.php

Polylang, version 1.9.2. 67 lines.

- Page: https://pluginprobe.com/plugins/polylang/1.9.2/code/include/static-pages.php
- Raw: https://pluginprobe.com/plugins/polylang/1.9.2/raw/include/static-pages.php
- Modified: 2016-06-06T11:51:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/polylang/1.9.2/code/include/static-pages.php#L10-L20`.

```php
<?php

/**
 * base class to manage the static front page and the page for posts
 *
 * @since 1.8
 */
abstract class PLL_Static_Pages {
	public $model, $options;
	public $page_on_front, $page_for_posts;

	/**
	 * constructor: setups filters and actions
	 *
	 * @since 1.8
	 *
	 * @param object $polylang
	 */
	public function __construct( &$polylang ) {
		$this->model = &$polylang->model;
		$this->options = &$polylang->options;

		$this->init();

		// clean the languages cache when editing page of front, page for posts
		add_action( 'update_option_page_on_front', array( &$this->model, 'clean_languages_cache' ) );
		add_action( 'update_option_page_for_posts', array( &$this->model, 'clean_languages_cache' ) );

		// refresh rewrite rules when the page on front is modified
		add_action( 'update_option_page_on_front', 'flush_rewrite_rules' );
	}

	/**
	 * stores the page on front and page for posts ids
	 *
	 * @since 1.8
	 */
	public function init() {
		if ( 'page' == get_option( 'show_on_front' ) ) {
			$this->page_on_front = get_option( 'page_on_front' );
			$this->page_for_posts = get_option( 'page_for_posts' );
		}

		else {
			$this->page_on_front = 0;
			$this->page_for_posts = 0;
		}
	}

	/**
	 * adds page_on_front and page_for_posts properties to the language objects
	 *
	 * @since 1.8
	 *
	 * @param array $languages
	 * @param object $model
	 */
	public static function pll_languages_list( $languages, $model ) {
		foreach ( $languages as $k => $language ) {
			$languages[ $k ]->page_on_front = $model->post->get( get_option( 'page_on_front' ), $language );
			$languages[ $k ]->page_for_posts = $model->post->get( get_option( 'page_for_posts' ), $language );
		}

		return $languages;
	}
}

```
