┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/var/www/html/gshub/wp-content/plugins/elementor/modules/favorites
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: favorites-type.php
<?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; } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 types/
DIR
—
2026-05-05 06:08
📄 controller.php
PHP
2 KB
2026-05-05 06:08
EDIT
📄 favorites-type.php
PHP
806 B
2026-05-05 06:08
EDIT
📄 module.php
PHP
5 KB
2026-05-05 06:08
EDIT