Current File : /home/escuelai/public_html/wp-content/plugins/learnpress/inc/admin/views/meta-boxes/fields/file.php |
<?php
/**
* LP_Meta_Box_Duration_Attribute
*
* @author Nhamdv
* @version 1.0.0
* @since 4.0.0
*/
class LP_Meta_Box_File_Field extends LP_Meta_Box_Field {
/**
* Constructor.
*
* @param string $id
* @param string $label
* @param string $description
* @param mixed $default
* @param array $extra
*/
public function __construct( $label = '', $description = '', $default = '', $extra = array() ) {
parent::__construct( $label, $description, $default, $extra );
}
public function output( $thepostid ) {
if ( empty( $this->id ) ) {
return;
}
$field = $this->extra;
$field['id'] = $this->id;
$field['default'] = $this->default;
$field['description'] = $this->description;
$field['label'] = $this->label;
$field['class'] = $field['class'] ?? 'short';
$field['style'] = $field['style'] ?? '';
$field['wrapper_class'] = $field['wrapper_class'] ?? '';
$field['default'] = ( ! $this->meta_value( $thepostid ) && isset( $field['default'] ) ) ? $field['default'] : $this->meta_value( $thepostid );
$field['value'] = $field['value'] ?? $field['default'];
$field['name'] = $field['name'] ?? $field['id'];
$field['mime_type'] = isset( $field['mime_type'] ) ? implode( ',', $field['mime_type'] ) : '';
$field['multil'] = isset( $field['multil'] ) && $field['multil'];
$field['desc_tip'] = $field['desc_tip'] ?? false;
// Custom attribute handling
$custom_attributes = array();
if ( ! empty( $field['custom_attributes'] ) && is_array( $field['custom_attributes'] ) ) {
foreach ( $field['custom_attributes'] as $attribute => $custom_attribute ) {
$custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $custom_attribute ) . '"';
}
}
echo '<div class="form-field ' . esc_attr( $field['id'] ) . '_field ' . esc_attr( $field['wrapper_class'] ) . '">
<label for="' . esc_attr( $field['id'] ) . '">' . wp_kses_post( $field['label'] ) . '</label>';
echo '<div id="' . esc_attr( $field['id'] ) . '" class="lp-meta-box__file ' . esc_attr( $field['class'] ) . '" data-mime="' . $field['mime_type'] . '" data-multil="' . $field['multil'] . '" style="' . esc_attr( $field['style'] ) . '" ' . implode(
' ',
$custom_attributes
) . '>';
echo '<ul class="lp-meta-box__file_list">';
$value = (array) $field['value'];
if ( ! empty( $field['value'] ) ) {
$value = array_map( 'absint', $value );
foreach ( $value as $attachment_id ) {
$url = wp_get_attachment_url( $attachment_id );
if ( $url ) {
$check_file = wp_check_filetype( $url );
echo '<li class="lp-meta-box__file_list-item image" data-attachment_id="' . $attachment_id . '">';
echo sprintf( '<img class="is_file" src="%s" />', wp_mime_type_icon( $check_file['type'] ) );
echo sprintf( '<span>%s</span>', wp_basename( get_attached_file( $attachment_id ) ) );
echo '<ul class="actions"><li><a href="#" class="delete"></a></li></ul>';
echo '</li>';
}
}
}
echo '</ul>';
echo '<input class="lp-meta-box__file_input" type="hidden" name="' . esc_attr( $field['id'] ) . '" value="' . esc_attr( ( ! empty( $field['value'] ) && is_array( $field['value'] ) ) ? implode( ',', $field['value'] ) : $field['value'] ) . '" />';
echo '<p>';
echo '<a href="#" class="button btn-upload">' . esc_html__( '+ Add media', 'learnpress' ) . '</a>';
if ( ! empty( $field['description'] ) && false !== $field['desc_tip'] ) {
learn_press_quick_tip( $field['description'] );
}
echo '</p>';
if ( ! empty( $field['description'] ) && false === $field['desc_tip'] ) {
echo '<span class="description">' . wp_kses_post( $field['description'] ) . '</span>';
}
echo '</div>';
echo '</div>';
}
public function save( $post_id ) {
$value = LP_Request::get_param( $this->id );
if ( ! empty( $value ) ) {
$value = explode( ',', $value );
if ( ! empty( $value ) ) {
$value = array_map( 'absint', $value );
}
} else {
$value = $this->default ?? '';
}
update_post_meta( $post_id, $this->id, $value );
return $value;
}
}