FILE: /var/www/html/wp-includes/build/pages/options-connectors/page-wp-admin.php
SIZE: 10290 bytes
MODIFIED: 2026-08-26 05:34:27

CONTENT:
<?php
/**
 * Page: options-connectors (wp-admin integrated)
 * Auto-generated by build process.
 * Do not edit this file manually.
 *
 * This version integrates with the standard WordPress admin interface,
 * keeping the wp-admin sidebar and scripts/styles intact.
 *
 * @package wp
 */

// Global storage for options-connectors routes and menu items
global $wp_options_connectors_wp_admin_routes, $wp_options_connectors_wp_admin_menu_items;
$wp_options_connectors_wp_admin_routes     = array();
$wp_options_connectors_wp_admin_menu_items = array();

/**
 * Register a route for the options-connectors-wp-admin page.
 *
 * @param string      $path           Route path (e.g., '/types/$type/edit/$id').
 * @param string|null $content_module Script module ID for content (stage/inspector).
 * @param string|null $route_module   Script module ID for route lifecycle hooks.
 */
function wp_register_options_connectors_wp_admin_route( $path, $content_module = null, $route_module = null ) {
	global $wp_options_connectors_wp_admin_routes;

	$route = array( 'path' => $path );
	if ( ! empty( $content_module ) ) {
		$route['content_module'] = $content_module;
	}
	if ( ! empty( $route_module ) ) {
		$route['route_module'] = $route_module;
	}

	$wp_options_connectors_wp_admin_routes[] = $route;
}

/**
 * Register a menu item for the options-connectors-wp-admin page.
 * Note: Menu items are registered but not displayed in single-page mode.
 *
 * @param string $id        Menu item ID.
 * @param string $label     Display label.
 * @param string $to        Route path to navigate to.
 * @param string $parent_id Optional. Parent menu item ID.
 */
function wp_register_options_connectors_wp_admin_menu_item( $id, $label, $to, $parent_id = '' ) {
	global $wp_options_connectors_wp_admin_menu_items;

	$menu_item = array(
		'id'    => $id,
		'label' => $label,
		'to'    => $to,
	);

	if ( ! empty( $parent_id ) ) {
		$menu_item['parent'] = $parent_id;
	}

	$wp_options_connectors_wp_admin_menu_items[] = $menu_item;
}

/**
 * Get all registered routes for the options-connectors-wp-admin page.
 *
 * @return array Array of route objects.
 */
function wp_get_options_connectors_wp_admin_routes() {
	global $wp_options_connectors_wp_admin_routes;
	return $wp_options_connectors_wp_admin_routes ?? array();
}

/**
 * Get all registered menu items for the options-connectors-wp-admin page.
 *
 * @return array Array of menu item objects.
 */
function wp_get_options_connectors_wp_admin_menu_items() {
	global $wp_options_connectors_wp_admin_menu_items;
	return $wp_options_connectors_wp_admin_menu_items ?? array();
}

/**
 * Preload REST API data for the options-connectors-wp-admin page.
 * Automatically called during page rendering.
 */
function wp_options_connectors_wp_admin_preload_data() {
	// Define paths to preload - same for all pages
	// This must exactly match the _fields list in packages/core-data/src/entities.js,
	// same fields in the same order, or the preload is never consumed.
	$preload_paths = array(
		'/?_fields=description,gmt_offset,home,image_max_bit_depth,image_sizes,image_size_threshold,image_strip_meta,name,site_icon,site_icon_url,site_logo,timezone_string,url,page_for_posts,page_on_front,show_on_front',
		array( '/wp/v2/settings', 'OPTIONS' ),
	);

	// Use rest_preload_api_request to gather the preloaded data
	$preload_data = array_reduce(
		$preload_paths,
		'rest_preload_api_request',
		array()
	);

	// Register the preloading middleware with wp-api-fetch
	wp_add_inline_script(
		'wp-api-fetch',
		sprintf(
			'wp.apiFetch.use( wp.apiFetch.createPreloadingMiddleware( %s ) );',
			wp_json_encode( $preload_data )
		),
		'after'
	);
}

/**
 * Enqueue scripts and styles for the options-connectors-wp-admin page.
 * Hooked to admin_enqueue_scripts.
 *
 * @param string $hook_suffix The current admin page.
 */
function wp_options_connectors_wp_admin_enqueue_scripts( $hook_suffix ) {
	// Check all possible ways this page can be accessed:
	// 1. Menu page via admin.php?page=options-connectors-wp-admin (plugin)
	// 2. Direct file via options-connectors.php (Core) - screen ID will be 'options-connectors'
	$current_screen = get_current_screen();
	$is_our_page = (
		( isset( $_GET['page'] ) && 'options-connectors-wp-admin' === $_GET['page'] ) || // phpcs:ignore WordPress.Security.NonceVerification.Recommended
		( $current_screen && 'options-connectors' === $current_screen->id )
	);

	if ( ! $is_our_page ) {
		return;
	}

	// Load build constants
	$build_constants = require __DIR__ . '/../../constants.php';

	/**
	 * Fires when the options-connectors admin page is initialized so extensions can register routes and menu items.
	 */
	do_action( 'options-connectors-wp-admin_init' );

	// Preload REST API data
	wp_options_connectors_wp_admin_preload_data();

	// Get all registered routes
	$routes = wp_get_options_connectors_wp_admin_routes();

	// Get boot module asset file for dependencies
	$asset_file = ABSPATH . WPINC . '/js/dist/script-modules/boot/index.min.asset.php';
	if ( file_exists( $asset_file ) ) {
		$asset = require $asset_file;

		// This script serves two purposes:
		// 1. It ensures all the globals that are made available to the modules are loaded.
		// 2. It initializes the boot module as an inline script.
		wp_register_script( 'options-connectors-wp-admin-prerequisites', '', $asset['dependencies'], $asset['version'], true );

		$init_modules = [];

		/*
		 * Add inline script to initialize the app using initSinglePage (no menuItems).
		 * The dynamic import is deferred until DOMContentLoaded so that all classic
		 * script dependencies of @wordpress/boot (wp-private-apis, wp-components,
		 * wp-theme, etc.) have finished parsing and executing before the boot module
		 * evaluates. Otherwise, a modulepreloaded @wordpress/boot can win the race
		 * against the classic-script-printing pass on fast CDN-fronted hosts in
		 * Chrome, evaluating before wp.theme.privateApis is defined and throwing
		 * "Cannot unlock an undefined object". See <https://core.trac.wordpress.org/ticket/65103>.
		 */
		$init_js_function = <<<'JS'
		( mountId, routes, initModules ) => {
			const run = async () => {
				const mod = await import( "@wordpress/boot" );
				mod.initSinglePage( { mountId, routes, initModules } );
			};
			if ( document.readyState === "loading" ) {
				document.addEventListener( "DOMContentLoaded", run );
			} else {
				run();
			}
		}
		JS;
		wp_add_inline_script(
			'options-connectors-wp-admin-prerequisites',
			sprintf(
				'( %s )( %s, %s, %s );',
				$init_js_function,
				wp_json_encode( 'options-connectors-wp-admin-app', JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $routes, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $init_modules, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES )
			)
		);

		// Register prerequisites style by filtering script dependencies to find registered styles
		$style_dependencies = array_filter(
			$asset['dependencies'],
			function ( $handle ) {
				return wp_style_is( $handle, 'registered' );
			}
		);
		wp_register_style( 'options-connectors-wp-admin-prerequisites', false, $style_dependencies, $asset['version'] );

		// Build dependencies for options-connectors-wp-admin module
		$boot_dependencies = array(
			array(
				'import' => 'static',
				'id'     => '@wordpress/boot',
			),
		);

		// Add init modules as static dependencies
			// No init modules configured

		// Add all registered routes as dependencies
		foreach ( $routes as $route ) {
			if ( isset( $route['route_module'] ) ) {
				$boot_dependencies[] = array(
					'import' => 'static',
					'id'     => $route['route_module'],
				);
			}
			if ( isset( $route['content_module'] ) ) {
				$boot_dependencies[] = array(
					'import' => 'dynamic',
					'id'     => $route['content_module'],
				);
			}
		}

		/**
		 * Filters the boot script-module dependencies for the
		 * options-connectors-wp-admin page.
		 *
		 * Surfaces extending this page can append entries to the boot
		 * dependency list. Each entry is an array with 'import' (string
		 * 'static' or 'dynamic') and 'id' (script-module handle) keys.
		 *
		 * @param array $boot_dependencies Boot dependencies for the page.
		 */
		$boot_dependencies = apply_filters(
			'options-connectors-wp-admin_boot_dependencies',
			$boot_dependencies
		);

		// Dummy script module to ensure dependencies are loaded
		wp_register_script_module(
			'options-connectors-wp-admin',
			$build_constants['build_url'] . 'pages/options-connectors/loader.js',
			$boot_dependencies
		);

		// Enqueue the boot scripts and styles
		wp_enqueue_script( 'options-connectors-wp-admin-prerequisites' );
		wp_enqueue_script_module( 'options-connectors-wp-admin' );
		wp_enqueue_style( 'options-connectors-wp-admin-prerequisites' );
	}
}

/**
 * Render the options-connectors-wp-admin page.
 * Call this function from add_menu_page or add_submenu_page.
 * This renders within the normal WordPress admin interface.
 */
function wp_options_connectors_wp_admin_render_page() {
	?>
	<style>
		/* Critical styles to prevent layout shifts - inlined for immediate application */

		#wpwrap {
			overflow-y: auto;
		}
		body.js {
			background: #fff;
		}

		/* Reset wp-admin padding */
		body.js #wpcontent {
			padding-inline-start: 0;
		}
		body.js #wpbody-content {
			padding-bottom: 0;
		}

		/* Hide legacy admin elements */
		body.js #wpbody-content > div:not(.boot-layout-container):not(#screen-meta) {
			display: none;
		}
		body.js #wpfooter {
			display: none;
		}

		/* Accessibility regions */
		.a11y-speak-region {
			inset-inline-start: -1px;
			top: -1px;
		}

		/* Admin menu indicators */
		ul#adminmenu a.wp-has-current-submenu::after,
		ul#adminmenu > li.current > a.current::after {
			border-inline-end-color: #fff;
		}

		/* Media frame fix */
		.media-frame select.attachment-filters:last-of-type {
			width: auto;
			max-width: 100%;
		}

		/* Responsive overflow fix for #wpwrap */
		@media (min-width: 782px) {
			#wpwrap {
				overflow-y: initial;
			}
		}
	</style>
	<div id="options-connectors-wp-admin-app" class="boot-layout-container"></div>
	<?php
}

// Hook the enqueue function to admin_enqueue_scripts
add_action( 'admin_enqueue_scripts', 'wp_options_connectors_wp_admin_enqueue_scripts' );

'가황' 나훈아가 삼성 이건희 회장 초대 거절하며 한 말: 대쪽과도 같은 기개가 느껴져 이렇게까지 멋있어도 되나 싶다
주요 메뉴 바로가기 (상단) 본문 컨텐츠 바로가기 주요 메뉴 바로가기 (하단)

‘가황’ 나훈아가 삼성 이건희 회장 초대 거절하며 한 말: 대쪽과도 같은 기개가 느껴져 이렇게까지 멋있어도 되나 싶다

구글 검색 선호 출처로 추가

Google 검색에서 뷰어스 기사를 더 자주 볼 수 있습니다.

나훈아, 이건희 회장 ⓒ예아라 제공, 뉴스1 

나훈아가 은퇴를 선언했다. 아무리 박하게 점수를 줘도 우리 가요사에서 열 손가락 안에는 넉넉하게 꼽힐 가수다. 무려 1960년대부터 활동하면서 숱한 히트곡을 남긴 대중가수이지만, 그의 최근 모습만 본 젊은 세대에겐 신비주의에 가려진 존재이기도 할 터. 남진과 나훈아 라이벌 구도에 초점을 맞춘 칼럼을 7년쯤 전에 쓴 적이 있는데, 오늘은 의외로 많은 이들이 모르거나 잘못 알고 있는 나훈아의 이면을 들춰볼까 한다.

흙수저 출신이다?

틀린 말이다! 상당한 재력가이자 국회의원까지 했던 아버지를 둔 남진과 비교당하면서 나훈아는 가난한 집안 출신인 것처럼 알려졌는데 실제로는 유복한 집안에서 자랐다. 그가 직접 밝힌 바에 따르면, 선원 출신으로 무역업을 한 아버지 덕분에 1950년대에 집에 축음기가 있었고 형과 함께 부산에서 서울로 유학을 올 수 있었다. 아버지는 꽤 공부를 잘했던 아들이 의사나 판검사가 되기를 기대했는데 허락도 없이 가수로 데뷔하자 대노하였고 죽는 날까지 용서하지 않았다. 모든 것을 다 이룬 나훈아에게도 아버지에게 끝내 인정받지 못한 일만큼은 천추의 한으로 남아 있다고 한다.

나훈아는 ‘뽕짝’ 가수다?

맞는 말이다! 흔히 뽕짝이라는 표현에 비하의 의미가 담겨 있다고 하는데, 나훈아는 스스로 뽕짝 가수라고 주저 없이 단정 짓고 틈만 나면 뽕짝이라는 장르를 찬양했다. 뽕짝이야말로 우리의 영혼을 담고 있는, 가장 한국적인 음악이라는 이유에서다. 한가지 더 얹자면, 어릴 때 그의 장래 희망은 클래식 성악가였다고 한다.

싸움을 잘한다?

매우 그렇다! 그는 인터뷰에서 싸움 실력을 종종 언급했다. 폭력 사건으로 경찰 조사를 받은 적도 일곱번이나 있다고. 그 옛날 공연장에는 종종 ‘건달’들이 몰려와 여성 관객을 희롱하고 가수에게 시비를 걸기도 했는데, 나훈아는 참지 않고 싸웠다고 한다. 왼쪽 뺨에 남아 있는 큰 흉터도 깨진 병을 들고 덤빈 괴한과 싸우다가 다쳐 무려 70바늘 넘게 꿰맨 흔적이다. 이 현장을 직접 목격한 방송인 이상벽은 실제 상황이 아닌 무대 연출인 줄 알았다고 증언한 바 있다. 참고로 그때 나훈아는 결국 괴한을 자기 손으로 제압했다. 정말이지 활극의 시대였다. 일본 공연에서는 “독도는 한국 땅”이라고 대놓고 말해 일본 우익의 협박을 받은 일도 있는데 나훈아는 경상도 사투리로 이렇게 답했다고 한다. “직일라믄 직이삐라”(죽이려면 죽여 봐).

가수 나훈아 ⓒ예아라 제공

나이를 속였다?

어떤 의미에서는 그렇다! 프로필상에는 1947년생이라고 되어있는데 그와 함께 학교에 다닌 1951년생들이 여럿 있다. 특히 서라벌 고등학교에서는 노래 솜씨로 유명했다는 동창들의 추억담도 있다. 다만, 어려 보이기 위해 나이를 실제보다 적게 표기한 게 아니라 학생 신분으로 데뷔하면서 오히려 나이를 올려 표기한 것이 지금도 프로필 나이로 유지되는 것으로 보인다.

곡을 쓸 줄 모른다?

정반대다! 놀랍게도 노래방에 가장 많은 곡이 등록된 작곡가가 바로 그다. 무려 800곡이 넘는 노래를 작곡하고 등록했다. 노래를 불러 음원으로 등록한 곡은 2000곡이 넘는다. 쉬지 않고 매년 10곡씩 음원을 발표해도 200년이 걸리는데? 과연 이 기록을 깰 가수가 앞으로 나올 수 있을까? 이 글을 쓰면서 ‘히트곡’이라고 할 만한 노래는 얼마나 있는지 세어보았는데 20곡까지 세다가 너무 많아서 포기했다. 자기가 만든 노래는 직접 부르는 경우가 대부분이었지만 다른 가수에게 줘서 히트한 노래도 여럿 있다. 강진의 ‘땡벌’, 이자연의 ‘당신의 의미’, 심수봉의 ‘여자이니까’ 등이 나훈아가 만든 노래. 특히 ‘땡벌’은 후배 가수를 위해 편곡까지 직접 해주며 돈도 받지 않았다고, 당사자인 강진이 미담을 밝힌 적 있다.

이 밖에 몇가지 흥미로운 사실들. 그는 서울에 오기 전까지는 야구 선수로도 뛰었다. 1951년 동갑내기 한국야구위원회(KBO) 허구연 총재가 부산 이웃 학교에서 함께 선수 생활을 했다고 한다. 이건희 회장의 초대를 거절했다. 김용철 변호사의 책 ‘삼성을 생각한다’에 나오는 내용인데, 이건희 회장의 부름에 이렇게 답했다고 한다. “나는 공연을 보기 위해 표를 산 대중 앞에서만 노래하니까 내 노래를 듣고 싶으면 표를 끊어라.” 북한 김정은 위원장의 초청도 거절했다. 2018년 남북평화 협력기원 평양 공연 때 일이다. 정치계 입문 권유도 거절했다. 그림과 서예에 상당한 조예가 있다. 이미 몇년 전에 은퇴를 예고했고 결국 실행에 옮겼다. 

나훈아의 마지막 콘서트 ⓒ예아라 제공

마지막으로, 그는 가황이라는 거창한 별명을 싫어했다. 하지만 온종일 그의 노래를 들으며 파란만장한 생애를 훑어본 나로서는 이렇게 말할 수밖에. 최고의 가수가 누구냐고 묻는다면 여러 얼굴이 떠오르지만, 가황이라는 표현이 어울리는 가수는 오직 나훈아뿐이라고.

단호하게 이별을 고하고 떠난 그를 향한 팬들의 마음이 꼭 ‘영영’의 노랫말 같지 않을까? “잊으라 했는데 잊어달라 했는데/ 그런데도 아직 난 너를 잊지 못하네.” 

한겨레/이재익 SBS PD / webmaster@huffingtonpost.kr

author-img
허프포스트코리아
content@viewus.co.kr

댓글0

300

댓글0

[AI 추천] 랭킹 뉴스

  • ‘낙상 사고’ 허영만, 중환자실 이송…한 달째
  • 람보르기니 무르시엘라고 LP 670-4 SV 수동 경매 단 5대 경매 등장
  • 유럽의 유명 축구 구단들을 쇼핑하듯 사고있는 한국인 억만장자 여성
  • "동창회 나가지 마세요.." 55살 넘어 동창회 가면 안 되는 이유 3가지
  • "뒤통수 맞지 않으려면.." 60대 이후로 가져야할 마음가짐 3가지
  • "현관문 위쪽 나사를 돌려 보세요" 20년차 도어 기사의 '진짜 꿀팁'

당신을 위한 인기글

  • 유럽의 유명 축구 구단들을 쇼핑하듯 사고있는 한국인 억만장자 여성
    유럽의 유명 축구 구단들을 쇼핑하듯 사고있는 한국인 억만장자 여성
  • 아나운서 이혜성 “7년간 부모와도 대화 단절 상태”
    아나운서 이혜성 “7년간 부모와도 대화 단절 상태”
  • 최근 들어서 공유와 한효주가 나이들어 보이는 진짜 이유
    최근 들어서 공유와 한효주가 나이들어 보이는 진짜 이유
  • 14살에 키 172cm, 48kg으로 연예인 엄마 따라잡은 딸의 놀라운 근황
    14살에 키 172cm, 48kg으로 연예인 엄마 따라잡은 딸의 놀라운 근황
  • 전국민이 제발 결혼하라 응원했떤…세기의 커플의 최후
    전국민이 제발 결혼하라 응원했떤…세기의 커플의 최후
  • 노소영, 최태원과 이혼확정 후 집 떠나며 올린 사진 한장…모두 오열
    노소영, 최태원과 이혼확정 후 집 떠나며 올린 사진 한장…모두 오열
  • ‘KTX 논란’ 박위, 더 큰 일 발생…변호사 “법적으로 처벌될 수 있는 상황”
    ‘KTX 논란’ 박위, 더 큰 일 발생…변호사 “법적으로 처벌될 수 있는 상황”
  • 이병철 회장이 경고한 ‘약속 미루는 사람’ 4가지 특징
    이병철 회장이 경고한 ‘약속 미루는 사람’ 4가지 특징
  • 구혜선, 이혼 6년만에 엄마된 근황 깜짝 발표…’축하 물결’
    구혜선, 이혼 6년만에 엄마된 근황 깜짝 발표…’축하 물결’
  • 직함도 월급도 아니었다, 반값 급여에도 다시 출근하는 이유
    직함도 월급도 아니었다, 반값 급여에도 다시 출근하는 이유

당신을 위한 인기글

  • 유럽의 유명 축구 구단들을 쇼핑하듯 사고있는 한국인 억만장자 여성
    유럽의 유명 축구 구단들을 쇼핑하듯 사고있는 한국인 억만장자 여성
  • 아나운서 이혜성 “7년간 부모와도 대화 단절 상태”
    아나운서 이혜성 “7년간 부모와도 대화 단절 상태”
  • 최근 들어서 공유와 한효주가 나이들어 보이는 진짜 이유
    최근 들어서 공유와 한효주가 나이들어 보이는 진짜 이유
  • 14살에 키 172cm, 48kg으로 연예인 엄마 따라잡은 딸의 놀라운 근황
    14살에 키 172cm, 48kg으로 연예인 엄마 따라잡은 딸의 놀라운 근황
  • 전국민이 제발 결혼하라 응원했떤…세기의 커플의 최후
    전국민이 제발 결혼하라 응원했떤…세기의 커플의 최후
  • 노소영, 최태원과 이혼확정 후 집 떠나며 올린 사진 한장…모두 오열
    노소영, 최태원과 이혼확정 후 집 떠나며 올린 사진 한장…모두 오열
  • ‘KTX 논란’ 박위, 더 큰 일 발생…변호사 “법적으로 처벌될 수 있는 상황”
    ‘KTX 논란’ 박위, 더 큰 일 발생…변호사 “법적으로 처벌될 수 있는 상황”
  • 이병철 회장이 경고한 ‘약속 미루는 사람’ 4가지 특징
    이병철 회장이 경고한 ‘약속 미루는 사람’ 4가지 특징
  • 구혜선, 이혼 6년만에 엄마된 근황 깜짝 발표…’축하 물결’
    구혜선, 이혼 6년만에 엄마된 근황 깜짝 발표…’축하 물결’
  • 직함도 월급도 아니었다, 반값 급여에도 다시 출근하는 이유
    직함도 월급도 아니었다, 반값 급여에도 다시 출근하는 이유

공유하기