uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
public_html
/
wp-content
/
plugins
/
all-in-one-seo-pack
/
app
/
Lite
/
.
/
Traits
/
Helpers
/
Vue.php
/
/
<?php namespace AIOSEO\Plugin\Lite\Traits\Helpers; // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Contains all Vue related helper methods for Lite. * * @since 4.8.6.1 */ trait Vue { /** * Returns the data for Vue. * * @since 4.8.6.1 * * @param string $page The current page. * @param int $staticPostId Data for a specific post. * @param string $integration Data for integration (builder). * @return array The data. */ public function getVueData( $page = null, $staticPostId = null, $integration = null ) { $this->args = compact( 'page', 'staticPostId', 'integration' ); $hash = md5( implode( '', array_map( 'strval', $this->args ) ) ); if ( isset( $this->cache[ $hash ] ) ) { return $this->cache[ $hash ]; } $this->data = parent::getVueData( $page, $staticPostId, $integration ); $this->setInitialData(); $this->cache[ $hash ] = $this->data; return $this->cache[ $hash ]; } /** * Set Vue initial data for Lite. * * @since 4.8.6.1 * * @return void */ private function setInitialData() { // Override the upgrade URL for Lite users $this->data['urls']['upgradeUrl'] = apply_filters( 'aioseo_upgrade_link', AIOSEO_MARKETING_URL . 'lite-upgrade/' ); } }
/home/batcwwjx/public_html/wp-content/plugins/all-in-one-seo-pack/app/Lite/./Traits/Helpers/Vue.php