1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
|
<?php
/**
* Export Mantra settings to file
*/
function mantra_export_options(){
if (ob_get_contents()) ob_clean();
/* Check authorisation */
$authorised = true;
// Check nonce
if ( ! wp_verify_nonce( $_POST['mantra-export'], 'mantra-export' ) ) {
$authorised = false;
}
// Check permissions
if ( ! current_user_can( 'edit_theme_options' ) ){
$authorised = false;
}
if ( $authorised) {
global $mantra_options;
/*date_default_timezone_set('UTC');
$today = date("YmdGis");
$name = 'mantra-settings'.$today.'.txt';*/
$name = 'mantra-settings.txt';
$data = $mantra_options;
$data = json_encode( $data );
$size = strlen( $data );
header( 'Content-Type: text/plain' );
header( 'Content-Disposition: attachment; filename="'.$name.'"' );
header( "Content-Transfer-Encoding: binary" );
header( 'Accept-Ranges: bytes' );
/* The three lines below basically make the download non-cacheable */
header( "Cache-control: private" );
header( 'Pragma: private' );
header( "Expires: Mon, 26 Jul 1997 05:00:00 GMT" );
header( "Content-Length: " . $size);
print( $data );
}
die();
}
if ( isset( $_POST['mantra_export'] ) ){
add_action( 'init', 'mantra_export_options' );
}
/**
* This file manages the theme settings uploading and import operations.
* Uses the theme page to create a new form for uplaoding the settings
* Uses WP_Filesystem
*/
function mantra_import_form(){
$bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
$size = size_format( $bytes );
$upload_dir = wp_upload_dir();
if ( ! empty( $upload_dir['error'] ) ) :
?><div class="error"><p><?php _e('Before you can upload your import file, you will need to fix the following error:', 'mantra'); ?></p>
<p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php
else :
?>
<div class="wrap">
<div style="width:400px;display:block;margin-left:30px;">
<div id="icon-tools" class="icon32"><br></div>
<h2><?php echo __( 'Import Mantra Theme Options', 'mantra' );?></h2>
<form enctype="multipart/form-data" id="import-upload-form" method="post" action="">
<p><?php _e('Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>', 'mantra'); ?></p>
<p>
<label for="upload"><strong><?php _e('Just choose a file from your computer:', 'mantra'); ?> </strong><i>(mantra-settings.txt)</i></label>
<input type="file" id="upload" name="import" size="25" />
<span style="font-size:10px;">(<?php printf( __( 'Maximum size: %s', 'mantra' ), $size ); ?> )</span>
<input type="hidden" name="action" value="save" />
<input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
<?php wp_nonce_field('mantra-import', 'mantra-import'); ?>
<input type="hidden" name="mantra_import_confirmed" value="true" />
</p>
<input type="submit" class="button" value="<?php _e('And import!', 'mantra'); ?>" />
</form>
</div>
</div> <!-- end wrap -->
<?php
endif;
} // Closes the mantra_import_form() function definition
/**
* This actual import of the options from the file to the settings array.
*/
function mantra_import_file() {
global $mantra_options;
/* Check authorisation */
$authorised = true;
// Check nonce
if (!wp_verify_nonce($_POST['mantra-import'], 'mantra-import')) {$authorised = false;}
// Check permissions
if (!current_user_can('edit_theme_options')){ $authorised = false; }
// If the user is authorised, import the theme's options to the database
if ($authorised) {?>
<?php
// make sure there is an import file uploaded
if ( (isset($_FILES["import"]["size"]) && ($_FILES["import"]["size"] > 0) ) ) {
$form_fields = array('import');
$method = '';
$url = wp_nonce_url('themes.php?page=mantra-page', 'mantra-import');
// Get file writing credentials
if (false === ($creds = request_filesystem_credentials($url, $method, false, false, $form_fields) ) ) {
return true;
}
if ( ! WP_Filesystem($creds) ) {
// our credentials were no good, ask the user for them again
request_filesystem_credentials($url, $method, true, false, $form_fields);
return true;
}
// Write the file if credentials are good
$upload_dir = wp_upload_dir();
$filename = trailingslashit($upload_dir['path']).'mantra_options.txt';
// by this point, the $wp_filesystem global should be working, so let's use it to create a file
global $wp_filesystem;
if ( ! $wp_filesystem->move($_FILES['import']['tmp_name'], $filename, true) ) {
echo 'Error saving file!';
return;
}
$file = $_FILES['import'];
if ($file['type'] == 'text/plain') {
$data = $wp_filesystem->get_contents($filename);
// try to read the file
if ($data !== FALSE){
$settings = json_decode($data, true);
// try to read the settings array
if (isset($settings['mantra_db'])){ ?>
<div class="wrap">
<div id="icon-tools" class="icon32"><br></div>
<h2><?php echo __( 'Import Mantra Theme Options ', 'mantra' );?></h2> <?php
$settings = array_merge($mantra_options, $settings);
update_option('ma_options', $settings);
echo '<div class="updated fade"><p>'. __('Great! The options have been imported!', 'mantra').'<br />';
echo '<a href="themes.php?page=mantra-page">'.__('Go back to the Mantra options page and check them out!', 'mantra').'<a></p></div>';
}
else { // else: try to read the settings array
echo '<div class="error"><p><strong>'.__('Oops, there\'s a small problem.', 'mantra').'</strong><br />';
echo __('The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page.', 'mantra').'</p></div>';
mantra_import_form();
}
}
else { // else: try to read the file
echo '<div class="error"><p><strong>'.__('Oops, there\'s a small problem.', 'mantra').'</strong><br />';
echo __('The uploaded file could not be read.', 'mantra').'</p></div>';
mantra_import_form();
}
}
else { // else: make sure the file uploaded was a plain text file
echo '<div class="error"><p><strong>'.__('Oops, there\'s a small problem.', 'mantra').'</strong><br />';
echo __('The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file.', 'mantra').'</p></div>';
mantra_import_form();
}
// Delete the file after we're done
$wp_filesystem->delete($filename);
}
else { // else: make sure there is an import file uploaded
echo '<div class="error"><p>'.__( 'Oops! The file is empty or there was no file. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini.', 'mantra' ).'</p></div>';
mantra_import_form();
}
echo '</div> <!-- end wrap -->';
}
else {
wp_die(__('ERROR: You are not authorised to perform that operation', 'mantra'));
}
} // Closes the mantra_import_file() function definition
// Truncate function for use in the Admin RSS feed
function mantra_truncate_words($string,$words=20, $ellipsis=' ...') {
$new = preg_replace('/((\w+\W+\'*){'.($words-1).'}(\w+))(.*)/', '${1}', $string);
return $new.$ellipsis;
}
// Synchronizing the tinymce width with the content width
add_filter('tiny_mce_before_init', 'mantra_dynamic_editor_styles', 10);
function mantra_dynamic_editor_styles($settings){
$settings['content_css'] .= ",".admin_url('admin-ajax.php') ."/?action=dynamic_styles";
return $settings;
}
// add wp_ajax callback
add_action('wp_ajax_dynamic_styles', 'mantra_dynamic_styles_callback');
function mantra_dynamic_styles_callback(){
global $mantra_options;
echo "html .mceContentBody , .mceContentBody img {max-width:".$mantra_options['mantra_sidewidth']."px;}";
}
?>
|