📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 04:21:08
📂
/ (Root)
/
home
/
xeqi7597
/
map.claireduwig.com
/
wp-content
/
plugins
/
elementor
/
modules
/
favorites
📍 /home/xeqi7597/map.claireduwig.com/wp-content/plugins/elementor/modules/favorites
🔄 Refresh
✏️
Editing: favorites-type.php
Writable
<?php namespace Elementor\Modules\Favorites; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } use Elementor\Core\Utils\Collection; use Elementor\Core\Utils\Static_Collection; abstract class Favorites_Type extends Static_Collection { public function __construct( array $items = [] ) { parent::__construct( $items, true ); } /** * Get the name of the type. * * @return mixed */ abstract public function get_name(); /** * Prepare favorites before taking any action. * * @param Collection|array|string $favorites * * @return array */ public function prepare( $favorites ) { if ( $favorites instanceof Collection ) { $favorites = $favorites->values(); } if ( ! is_array( $favorites ) ) { return [ $favorites ]; } return $favorites; } }
💾 Save Changes
❌ Cancel