Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-admin
/
wp-content
/
plugins
/
formidable-pro
/
classes
/
models
:
FrmProStyle.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if ( ! defined( 'ABSPATH' ) ) { die( 'You are not allowed to call this page directly.' ); } class FrmProStyle extends FrmStyle { public function duplicate( $id ) { $this->id = $id; $default_style = $this->get_one(); $style = $this->get_new(); $style->post_content = array_merge( $style->post_content, $default_style->post_content ); return $style; } }