HEX
HEX
Server: Apache
System: Linux localhost.localdomain 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64
User: www (1001)
PHP: 8.1.32
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/ahmsolaiman.com/wp-content/plugins/types/application/models/helper/create/layout.php
<?php

/**
 * @refactoring Get rid of the hard Layouts dependencies.
 */
class Types_Helper_Create_Layout {

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

		// set name if no available
		if ( ! $name ) {
			$type_object = get_post_type_object( $type );
			$name = sprintf( __( 'Template for %s', 'wpcf' ), $type_object->labels->name );
		}

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

		if ( ! $name ) {
			return false;
		}

		// create layout
		$layout_id = $this->create_layout( $name );

		if ( ! $layout_id ) {
			return false;
		}

		// get all items of post type
		$posts = get_posts( [
			'post_type' => $type,
			'post_status' => 'any',
			'posts_per_page' => -1,
			'fields' => 'ids',
		] );

		if ( ! defined( 'WPDDL_LAYOUTS_META_KEY' ) ) {
			return false;
		}

		// store layout assignments before assign new
		$post_has_layout = array();
		foreach ( $posts as $id ) {
			$layout = get_post_meta( $id, WPDDL_LAYOUTS_META_KEY, true );
			if ( ! empty( $layout ) ) {
				$post_has_layout[] = array(
					'id' => $id,
					'layout-slug' => $layout,
				);
			}
		}

		// assign the new layout to all post types
		global $wpddlayout;
		$wpddlayout->post_types_manager->handle_set_option_and_bulk_at_once( $layout_id, array( $type ), array( $type ) );

		// restore previously assigned layouts
		if ( ! empty( $post_has_layout ) ) {
			foreach ( $post_has_layout as $post ) {
				update_post_meta( $post['id'], WPDDL_LAYOUTS_META_KEY, $post['layout-slug'] );
			}
		}

		return $layout_id;
	}


	/**
	 * Checks all dependencies
	 *
	 * @return bool
	 * @since 2.0
	 */
	private function needed_components_loaded() {
		global $wpddlayout;

		return defined( 'WPDDL_LAYOUTS_META_KEY' )
			&& is_object( $wpddlayout )
			&& class_exists( 'WPDD_Layouts' )
			&& class_exists( 'WPDDL_Options' )
			&& class_exists( 'WPDD_Layouts_Users_Profiles' )
			&& method_exists( 'WPDD_Layouts', 'create_layout' )
			&& method_exists( 'WPDD_Layouts', 'save_layout_settings' )
			&& method_exists( 'WPDD_Layouts_Users_Profiles', 'user_can_create' )
			&& method_exists( 'WPDD_Layouts_Users_Profiles', 'user_can_assign' )
			&& method_exists( 'WPDD_Layouts_Cache_Singleton', 'get_name_by_id' )
			&& method_exists( $wpddlayout, 'get_css_framework' );
	}


	/**
	 * Create a layout with given name
	 *
	 * @param string $name
	 *
	 * @return bool|int|WP_Error
	 * @since 2.0
	 */
	private function create_layout( $name ) {
		// todo check with Ric to get a more handy class to create a new layout.
		// currently there is only (which I found)
		// - create_layout_auto(), which has a redirect
		// - create_layout_callback() for ajax only -> uses die()
		global $wpddlayout;

		if (
			! defined('WPDDL_LAYOUTS_POST_TYPE' )
			|| ! $this->needed_components_loaded()
		) {
			return false;
		}

		// permissions
		if (
			! current_user_can( 'manage_options' )
			&& WPDD_Layouts_Users_Profiles::user_can_create()
			&& WPDD_Layouts_Users_Profiles::user_can_assign()
		) {
			return false;
		}

		$layout = WPDD_Layouts::create_layout( 12, 'fluid' );

		$parent_post_name = '';
		$parent_ID = apply_filters(
			'ddl-get-default-' . WPDDL_Options::PARENTS_OPTIONS,
			0,
			WPDDL_Options::PARENTS_OPTIONS
		);

		if ( $parent_ID ) {
			$parent_post_name = WPDD_Layouts_Cache_Singleton::get_name_by_id( $parent_ID );
		}

		// Define layout parameters
		$layout['type'] = 'fluid'; // layout_type
		$layout['cssframework'] = $wpddlayout->get_css_framework();
		$layout['template'] = '';
		$layout['parent'] = $parent_post_name;
		$layout['name'] = $name;

		$args = array(
			'post_title' => $name,
			'post_content' => '',
			'post_status' => 'publish',
			'post_type' => WPDDL_LAYOUTS_POST_TYPE,
		);
		$layout_id = wp_insert_post( $args );

		// force layout object to take right ID
		// @see WPDD_Layouts::create_layout_callback() @ wpddl.class.php
		$layout_post = get_post( $layout_id );
		$layout['id'] = $layout_id;
		$layout['slug'] = $layout_post->post_name;

		// update changes
		WPDD_Layouts::save_layout_settings( $layout_id, $layout );

		return $layout_id;
	}


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

		$name_exists = get_page_by_title( html_entity_decode( $name ), OBJECT, WPDDL_LAYOUTS_POST_TYPE );

		if ( $name_exists ) {
			$name = $id > 1 ? rtrim( rtrim( $name, (string) ( $id - 1 ) ) ) : $name;

			return $this->validate_name( $name . ' ' . $id, $id + 1 );
		}

		return $name;
	}

}