CP_Customization

ClassicPress Customization class


Source

File: wp-includes/classicpress/class-cp-customization.php

class CP_Customization {
	public function __construct() {
		add_action( 'wp_ajax_inline-save', array( $this, 'add_id_init' ), 0 );
		add_action( 'load-edit.php', array( $this, 'add_id_init' ) );
		add_filter( 'gettext_default', array( $this, 'cp_translations' ), 10, 3 );
	}

	/**
	 * Returns the matching ClassicPress URL.
	 *
	 * Searches for WP URLs in $wp_to_cp_urls and replaces with the corresponding CP URL.
	 * Intended to be used as gettext_default filter.
	 *
	 * @since CP-2.0.0
	 *
	 *
	 * @param string $translation Translated text.
	 * @param string $text        Text to translate.
	 * @param string $domain      Text domain. Unique identifier for retrieving translated strings.
	 * @return string Translated string with corrected URL.
	 */

	public function cp_translations( $translated_text, $untranslated_text, $domain ) {
		if ( ! str_contains( $untranslated_text, 'https://' ) ) {
			return $translated_text;
		}

		$wp_to_cp = array(
			'https://wordpress.org/support/forums/' => 'https://forums.classicpress.net/c/support/',
		);

		$translated = $translated_text;

		foreach ( $wp_to_cp as $wp_src => $cp_dst ) {
			$translated = str_replace( $wp_src, $cp_dst, $translated );
		}

		return $translated;
	}

	/**
	 * Add ID column to Post / Page Tables
	 */
	public function add_id_init() {
		$screen = get_current_screen();

		if ( isset( $screen->post_type ) ) {
			$type = $screen->post_type;
		} elseif ( wp_doing_ajax() && isset( $_REQUEST['action'] ) && $_REQUEST['action'] === 'inline-save' && isset( $_REQUEST['post_type'] ) ) {
			$type = $_REQUEST['post_type'];
		} else {
			return;
		}

		if ( ! in_array( $type, array( 'post', 'page' ), true ) ) {
			return;
		}

		add_filter( "manage_edit-{$type}_columns", array( $this, 'add_id_column' ) );
		add_action( 'admin_head', array( $this, 'add_id_style' ) );
		add_action( "manage_{$type}_posts_custom_column", array( $this, 'add_id_data_cb' ), 10, 2 );
		add_filter( "manage_edit-{$type}_sortable_columns", array( $this, 'add_id_data_sortable' ) );
	}

	public function add_id_column( $cols ) {
		$cols = array_reverse( $cols, true );
		$cb   = array_pop( $cols );

		$cols['id'] = 'ID';
		$cols['cb'] = 'cb';

		return array_reverse( $cols, true );
	}

	public function add_id_style() {
		echo '<style>.wp-list-table .column-id { width: 5%; }</style>';
	}

	public function add_id_data_cb( $col, $post_id ) {
		if ( 'id' === $col ) {
			echo esc_html( $post_id );
		}
	}

	public function add_id_data_sortable( $cols ) {
		$cols['id'] = 'template';
		return $cols;
	}
}

Methods


Changelog

Changelog
Version Description
CP-2.0.0 Introduced. CP-2.0.0