D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ltfsolutionsco
/
www
/
wp-content
/
plugins
/
ditty-news-ticker
/
legacy
/
inc
/
admin
/
Filename :
ajax.php
back
Copy
<?php /* --------------------------------------------------------- */ /* !Display a single image field via ajax - 1.0.0 */ /* --------------------------------------------------------- */ function mtphr_dnt_single_image_ajax() { // Get access to the database global $wpdb; // Check the nonce check_ajax_referer( 'ditty-news-ticker', 'security' ); // Get variables $attachment = $_POST['attachment']; // Display the image if( $attachment['type'] == 'image' ) { mtphr_dnt_render_single_image( $attachment['id'] ); } die(); // this is required to return a proper result } add_action( 'wp_ajax_mtphr_dnt_single_image_ajax', 'mtphr_dnt_single_image_ajax' ); /* --------------------------------------------------------- */ /* !Return a new editor via ajax - 2.0.0 */ /* --------------------------------------------------------- */ function mtphr_dnt_wysiwyg_ajax() { // Get access to the database global $wpdb; // Check the nonce check_ajax_referer( 'ditty-news-ticker', 'security' ); // Get variables $name = $_POST['name']; $editor_settings = array( 'textarea_name' => $name, 'textarea_rows' => 2 ); // Display the image wp_editor( '', uniqid(), $editor_settings ); die(); // this is required to return a proper result } add_action( 'wp_ajax_mtphr_dnt_wysiwyg_ajax', 'mtphr_dnt_wysiwyg_ajax' );
Name
Size
Last Modified
Owner
Permissions
Actions
fields
Dir
February 03 2024 2:09:17
ltfsolutionsco
0755
ajax.php
1.303
KB
February 03 2024 2:09:17
ltfsolutionsco
0644
edit-columns.php
5.283
KB
February 03 2024 2:09:17
ltfsolutionsco
0644
filters.php
0.233
KB
February 03 2024 2:09:17
ltfsolutionsco
0644
functions.php
1.003
KB
February 03 2024 2:09:17
ltfsolutionsco
0644
meta-boxes.php
54.954
KB
February 03 2024 2:09:17
ltfsolutionsco
0644
upgrades.php
0.028
KB
February 03 2024 2:09:17
ltfsolutionsco
0644
2017 © D7net | D704T team