field_slug, $this->item_type );
}
/**
* Render delete settings.
*/
protected function render_delete_settings() {
bd_render_delete_settings( $this->field_slug );
/**
* This action is primarily for adding delete attachment settings.
*
* @since 6.0.0
*
* @param \BulkWP\BulkDelete\Core\Base\BaseModule The delete module.
*/
do_action( 'bd_render_attachment_settings', $this );
}
/**
* Render limit settings.
*
* @param string $item_type Item Type to be displayed in label.
*/
protected function render_limit_settings( $item_type = '' ) {
if ( empty( $item_type ) ) {
$item_type = $this->item_type;
}
bd_render_limit_settings( $this->field_slug, $item_type );
}
/**
* Render cron settings based on whether scheduler is present or not.
*/
protected function render_cron_settings() {
$pro_class = '';
$disabled_attr = 'disabled';
if ( empty( $this->scheduler_url ) ) {
$disabled_attr = '';
}
?>
autocomplete="off">
scheduler_url ) ) : ?>
field_slug ) . '-pro';
/**
* HTML class of the span that displays the 'Pro only feature' message.
*
* @since 6.0.0
*
* @param string $pro_class HTML class.
* @param string $field_slug Field Slug of module.
* @param \BulkWP\BulkDelete\Core\Base\BaseModule $module Module.
*/
$pro_class = apply_filters( 'bd_pro_only_feature_class', $pro_class, $this->field_slug, $this )
?>
Buy now
class="" style="display: none;"
>
Y-m-d H:i:s format or enter now to use current time.', 'bulk-delete' );
$markup = __( 'Want to add new a Cron schedule?', 'bulk-delete' ) . ' ' .
'' . __( 'Find out how', 'bulk-delete' ) . '';
$content = __( 'Learn how to add your desired Cron schedule.', 'bulk-delete' );
echo ' ', bd_generate_help_tooltip( $markup, $content );
?>