Current File : /var/www/e360ban/wp-content/plugins/toolset-blocks/inc/wpv-admin-changes.php
<?php

/**
 * Helper function returning the layout label by slug
 *
 * @param string $wpv_layout_settings
 * @return string
 */
function wpv_get_layout_label_by_slug($wpv_layout_settings) { // DEPRECATED test because Victor can be using something from here
	$style = isset($wpv_layout_settings['style']) ? $wpv_layout_settings['style'] : 'unformatted';

	$layout_box = '<div class="view_layout_box"><table><tr><td colspan="2" style="border-bottom-color:#FFFFFF;margin-left:10px;">';
	switch($style) {
		case 'unformatted': $layout_box .= __('Unformatted', 'wpv-views'); break;
		case 'ordered_list': $layout_box .= __('Ordered List', 'wpv-views'); break;
		case 'un_ordered_list': $layout_box .= __('Unordered List', 'wpv-views'); break;
		case 'table': $layout_box .= __('Grid', 'wpv-views'); break;
		case 'table_of_fields': $layout_box .= __('Table', 'wpv-views'); break;
	}

	$layout_box .= '</td></tr><tr><td width="34" style="border-bottom-color:#FFFFFF;">';
	switch($style) {
		case 'unformatted': $layout_box .= '<img src="' . WPV_URL . '/res/img/layout-unformated-48.png" />&nbsp;'; break;
		case 'ordered_list': $layout_box .= '<img src="' . WPV_URL . '/res/img/layout-ordered-list-48.png" />&nbsp;'; break;
		case 'un_ordered_list': $layout_box .= '<img src="' . WPV_URL . '/res/img/layout-un-ordered-list-48.png" />&nbsp;'; break;
		case 'table': $layout_box .= '<img src="' . WPV_URL . '/res/img/layout-grid-48.png" />&nbsp;'; break;
		case 'table_of_fields': $layout_box .= '<img align="left" src="' . WPV_URL . '/res/img/layout-table-48.png" />&nbsp;'; break;
	}

	$layout_box .= '</td><td style="border-bottom-color:#FFFFFF;">';

	if (isset($wpv_layout_settings['layout_meta_html'])) {
		$shortcode_expression = "/\\[(wpv-post|wpv-tax|types).*?\\]/i";

		// search for shortcodes
		$counts = preg_match_all($shortcode_expression, $wpv_layout_settings['layout_meta_html'], $matches);

		// iterate 0-level shortcode elements
		if($counts > 0) {
			$added = array();
			foreach($matches[0] as $match) {
				if (sizeof($added)) {
					$layout_box .= '<br />';
				}
				if (!in_array($match, $added)) {
					$layout_box .= $match;
					$added[] = $match;
				}

			}
		}
	}

	$layout_box .= '</td></tr></table>';
	$layout_box .= '</div>';
	return $layout_box;
}

function wpv_get_view_template_defaults($wpv_options, $post_id) { // TODO check where is this used, maybe DEPRECATED

	$result = '';

	if ($wpv_options) {
		foreach($wpv_options as $option=>$value) {
			if($value == $post_id) {
				if(strpos($option, 'views_template_for_') !== false) {
					$term = substr($option, 19);
					$result .= __('Single view for ', 'wpv-views'). '<span class="view_template_term">' . $term .  '</span>. <br />';
				} else if(strpos($option, 'views_template_archive_for_') !== false) {
					$term = substr($option, 27);
					$result .= __('Archive view for ', 'wpv-views'). '<span class="view_template_term">' . $term .  '</span>. <br />';
				} else if(strpos($option, 'views_template_loop_') !== false) {
					$term = substr($option, 20);
					$result .= __('Loop view for ', 'wpv-views'). '<span class="view_template_term">' . $term .  '</span>. <br />';
				}
			}
		}
	}

	if ($result != '') {
		$result = '<div class="view_template_default_box">' . $result . '</div>';
	}

	return $result;
}

function wpv_create_content_summary_for_listing($post_id) {
    // TODO check if e want to use this or next filter, DEPRECATED for the other NOTE ModuleManager is using one

    // TODO this is currently being used in Views listing

	global $WP_Views;
	$view_settings = $WP_Views->get_view_settings( $post_id );

	if (!isset($view_settings['view-query-mode'])) {
		$view_settings['view-query-mode'] = 'normal';
	}
	
	$summary = '';

	switch ($view_settings['view-query-mode']) {
		case 'normal':
			$summary .= apply_filters('wpv-view-get-content-summary', '', $post_id, $view_settings);
			break;

		case 'archive':
			$summary .= __('This View displays results for an', 'wpv-views') . ' <strong>' . __('existing WordPress query', 'wpv-views') . '</strong>';
			break;
	}

	return $summary;
}

function wpv_create_summary_for_listing( $post_id ) {
	// Used to call the wpv-view-get-summary filter
	$doing_it_wrong_message = __( 'wpv_create_summary_for_listing is deprecated and should not be used.', 'wpv-views' );
	_doing_it_wrong( 'wpv_create_summary_for_listing', $doing_it_wrong_message, '2.1' );
	$summary = '';
	return $summary;
}

// highlight the proper top level menu - needed when embedding WordPress custom post types edit pages in custom menus
function wpv_view_templates_menu_fix($parent_file) { // TODO review this
	global $current_screen;
	if ('view-template' == $current_screen->post_type) $parent_file = 'views';
	return $parent_file;
}
add_action('parent_file', 'wpv_view_templates_menu_fix');

Page Not Found
Parece que el enlace que apuntaba aquí no sirve. ¿Quieres probar con una búsqueda?
¡Hola!