REDROOM
PHP 8.0.30
Path:
Logout
Edit File
Size: 1.60 KB
Close
/home/certprox/template.certproxywizard.com/wp-content/plugins/woolentor-addons/includes/class.product_video_gallery.php
Text
Base64
<?php /** * Product Video Gallery */ class Wl_Product_Video_Gallery{ private static $_instance = null; public static function instance(){ if( is_null( self::$_instance ) ){ self::$_instance = new self(); } return self::$_instance; } function __construct(){ // Meta data add_filter( 'attachment_fields_to_edit', array( $this, 'woolentor_attachment_field_video' ), 10, 2 ); add_filter( 'attachment_fields_to_save', array( $this, 'woolentor_attachment_field_video_save'), 10, 2 ); } // Add Custom Meta Field function woolentor_attachment_field_video( $form_fields, $post ) { $form_fields['woolentor-product-video-url'] = array( 'label' => esc_html__( 'Video', 'woolentor' ), 'input' => 'text', 'value' => get_post_meta( $post->ID, 'woolentor_video_url', true ), 'helps' => esc_html__( 'Add Youtube / Vimeo URL', 'woolentor' ) ); return $form_fields; } // Save Custom Meta Field data function woolentor_attachment_field_video_save( $post, $attachment ) { if ( isset( $attachment['woolentor-product-video-url'] ) ) { update_post_meta( $post['ID'], 'woolentor_video_url', esc_url( $attachment['woolentor-product-video-url'] ) ); }else{ delete_post_meta( $post['ID'], 'woolentor_video_url' ); } return $post; } } Wl_Product_Video_Gallery::instance();
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 6 × Files: 7
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
addons
DIR
-
drwxr-xr-x
2026-06-11 12:51:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
admin
DIR
-
drwxr-xr-x
2026-06-11 12:51:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
admin-panel
DIR
-
drwxr-xr-x
2026-06-11 12:51:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
custom-control
DIR
-
drwxr-xr-x
2026-06-11 12:51:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
modules
DIR
-
drwxr-xr-x
2026-06-11 12:51:38
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
traits
DIR
-
drwxr-xr-x
2026-06-11 12:51:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
api.php
1.91 KB
lrw-r--r--
2026-06-11 12:51:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
archive_product_render.php
9.90 KB
lrw-r--r--
2026-06-11 12:51:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
base.php
19.74 KB
lrw-r--r--
2026-06-11 12:51:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
class.product_video_gallery.php
1.60 KB
lrw-r--r--
2026-06-11 12:51:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
custom-metabox.php
3.28 KB
lrw-r--r--
2026-06-11 12:51:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
helper-function.php
72.00 KB
lrw-r--r--
2026-06-11 12:51:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
manage_wc_template.php
18.65 KB
lrw-r--r--
2026-06-11 12:51:37
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).