本文整理汇总了PHP中UniteDBRev::update方法的典型用法代码示例。如果您正苦于以下问题:PHP UniteDBRev::update方法的具体用法?PHP UniteDBRev::update怎么用?PHP UniteDBRev::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UniteDBRev
的用法示例。
在下文中一共展示了UniteDBRev::update方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: importCaptionsCssContentArray
/**
*
* import contents of the css file
*/
public static function importCaptionsCssContentArray()
{
$db = new UniteDBRev();
$css = self::getCaptionsCssContentArray();
$static = array();
if (is_array($css) && $css !== false && count($css) > 0) {
foreach ($css as $class => $styles) {
//check if static style or dynamic style
$class = trim($class);
if (strpos($class, ':hover') === false && strpos($class, ':') !== false || strpos($class, " ") !== false || strpos($class, ".tp-caption") === false || (strpos($class, ".") === false || strpos($class, "#") !== false) || strpos($class, ">") !== false) {
//.tp-caption>.imageclass or .tp-caption.imageclass>img or .tp-caption.imageclass .img
$static[$class] = $styles;
continue;
}
//is a dynamic style
if (strpos($class, ':hover') !== false) {
$class = trim(str_replace(':hover', '', $class));
$arrInsert = array();
$arrInsert["hover"] = json_encode($styles);
$arrInsert["settings"] = json_encode(array('hover' => 'true'));
} else {
$arrInsert = array();
$arrInsert["params"] = json_encode($styles);
}
//check if class exists
$result = $db->fetch(GlobalsRevSlider::$table_css, "handle = '" . $class . "'");
if (!empty($result)) {
//update
$db->update(GlobalsRevSlider::$table_css, $arrInsert, array('handle' => $class));
} else {
//insert
$arrInsert["handle"] = $class;
$db->insert(GlobalsRevSlider::$table_css, $arrInsert);
}
}
}
if (!empty($static)) {
//save static into static-captions.css
$css = UniteCssParserRev::parseStaticArrayToCss($static);
$static_cur = RevOperations::getStaticCss();
//get the open sans line!
$css = $static_cur . "\n" . $css;
self::updateStaticCss($css);
}
}
示例2: cmo_import_sliders_ajax
function cmo_import_sliders_ajax()
{
global $wpdb;
if (!class_exists('UniteFunctionsRev')) {
ajax_finish(false, __('Revolution Slider plugin is not installed or activated.', 'cumulo'));
} else {
$rev_directory = CMO_FRAMEWORK_PATH . '/demo/sliders/';
if (!empty($_POST['demo'])) {
if ($_POST['demo'] != 'default') {
$rev_directory .= $_POST['demo'] . '/';
}
}
foreach (glob($rev_directory . '*.zip') as $filename) {
$filename = basename($filename);
$rev_files[] = $rev_directory . $filename;
}
foreach ($rev_files as $rev_file) {
$filepath = $rev_file;
$zip = new ZipArchive();
$importZip = $zip->open($filepath, ZIPARCHIVE::CREATE);
if ($importZip === true) {
$slider_export = $zip->getStream('slider_export.txt');
$custom_animations = $zip->getStream('custom_animations.txt');
$dynamic_captions = $zip->getStream('dynamic-captions.css');
$static_captions = $zip->getStream('static-captions.css');
$content = '';
$animations = '';
$dynamic = '';
$static = '';
while (!feof($slider_export)) {
$content .= fread($slider_export, 1024);
}
if ($custom_animations) {
while (!feof($custom_animations)) {
$animations .= fread($custom_animations, 1024);
}
}
if ($dynamic_captions) {
while (!feof($dynamic_captions)) {
$dynamic .= fread($dynamic_captions, 1024);
}
}
if ($static_captions) {
while (!feof($static_captions)) {
$static .= fread($static_captions, 1024);
}
}
fclose($slider_export);
if ($custom_animations) {
fclose($custom_animations);
}
if ($dynamic_captions) {
fclose($dynamic_captions);
}
if ($static_captions) {
fclose($static_captions);
}
//check for images!
} else {
$content = @file_get_contents($filepath);
}
if ($importZip === true) {
//we have a zip
$db = new UniteDBRev();
//update/insert custom animations
$animations = @unserialize($animations);
if (!empty($animations)) {
foreach ($animations as $key => $animation) {
$exist = $db->fetch(GlobalsRevSlider::$table_layer_anims, "handle = '" . $animation['handle'] . "'");
if (!empty($exist)) {
if ($updateAnim == "true") {
$arrUpdate = array();
$arrUpdate['params'] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$db->update(GlobalsRevSlider::$table_layer_anims, $arrUpdate, array('handle' => $animation['handle']));
$id = $exist['0']['id'];
} else {
$arrInsert = array();
$arrInsert["handle"] = 'copy_' . $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
}
} else {
$arrInsert = array();
$arrInsert["handle"] = $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
}
$content = str_replace(array('customin-' . $animation['id'], 'customout-' . $animation['id']), array('customin-' . $id, 'customout-' . $id), $content);
}
} else {
}
//overwrite/append static-captions.css
if (!empty($static)) {
if (isset($updateStatic) && $updateStatic == "true") {
RevOperations::updateStaticCss($static);
} else {
//append
$static_cur = RevOperations::getStaticCss();
$static = $static_cur . "\n" . $static;
RevOperations::updateStaticCss($static);
//.........这里部分代码省略.........
示例3: importSliderFromPost
/**
*
* import slider from multipart form
*/
public function importSliderFromPost($updateAnim = true, $updateStatic = true)
{
try {
$sliderID = UniteFunctionsRev::getPostVariable("sliderid");
$sliderExists = !empty($sliderID);
if ($sliderExists) {
$this->initByID($sliderID);
}
$filepath = $_FILES["import_file"]["tmp_name"];
if (file_exists($filepath) == false) {
UniteFunctionsRev::throwError("Import file not found!!!");
}
//check if zip file or fallback to old, if zip, check if all files exist
$zip = new ZipArchive();
$importZip = $zip->open($filepath, ZIPARCHIVE::CREATE);
if ($importZip === true) {
//true or integer. If integer, its not a correct zip file
//check if files all exist in zip
$slider_export = $zip->getStream('slider_export.txt');
$custom_animations = $zip->getStream('custom_animations.txt');
$dynamic_captions = $zip->getStream('dynamic-captions.css');
$static_captions = $zip->getStream('static-captions.css');
if (!$slider_export) {
UniteFunctionsRev::throwError("slider_export.txt does not exist!");
}
//if(!$custom_animations) UniteFunctionsRev::throwError("custom_animations.txt does not exist!");
//if(!$dynamic_captions) UniteFunctionsRev::throwError("dynamic-captions.css does not exist!");
//if(!$static_captions) UniteFunctionsRev::throwError("static-captions.css does not exist!");
$content = '';
$animations = '';
$dynamic = '';
$static = '';
while (!feof($slider_export)) {
$content .= fread($slider_export, 1024);
}
if ($custom_animations) {
while (!feof($custom_animations)) {
$animations .= fread($custom_animations, 1024);
}
}
if ($dynamic_captions) {
while (!feof($dynamic_captions)) {
$dynamic .= fread($dynamic_captions, 1024);
}
}
if ($static_captions) {
while (!feof($static_captions)) {
$static .= fread($static_captions, 1024);
}
}
fclose($slider_export);
if ($custom_animations) {
fclose($custom_animations);
}
if ($dynamic_captions) {
fclose($dynamic_captions);
}
if ($static_captions) {
fclose($static_captions);
}
//check for images!
} else {
//check if fallback
//get content array
$content = @file_get_contents($filepath);
}
if ($importZip === true) {
//we have a zip
$db = new UniteDBRev();
//update/insert custom animations
$animations = @unserialize($animations);
if (!empty($animations)) {
foreach ($animations as $key => $animation) {
//$animation['id'], $animation['handle'], $animation['params']
$exist = $db->fetch(GlobalsRevSlider::$table_layer_anims, "handle = '" . $animation['handle'] . "'");
if (!empty($exist)) {
//update the animation, get the ID
if ($updateAnim == "true") {
//overwrite animation if exists
$arrUpdate = array();
$arrUpdate['params'] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$db->update(GlobalsRevSlider::$table_layer_anims, $arrUpdate, array('handle' => $animation['handle']));
$id = $exist['0']['id'];
} else {
//insert with new handle
$arrInsert = array();
$arrInsert["handle"] = 'copy_' . $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
}
} else {
//insert the animation, get the ID
$arrInsert = array();
$arrInsert["handle"] = $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
//.........这里部分代码省略.........
示例4: fusion_importer
//.........这里部分代码省略.........
default:
$shop_demo = true;
$woo_xml = get_template_directory() . '/framework/plugins/importer/classic_demo/avada.xml';
$theme_xml_file = get_template_directory() . '/framework/plugins/importer/classic_demo/avada.xml';
$theme_options_file = get_template_directory() . '/framework/plugins/importer/classic_demo/theme_options.txt';
// Register Custom Sidebars
$sidebar_exists = true;
$sidebars = array('ContactSidebar' => 'Contact Sidebar', 'FAQ' => 'FAQ', 'HomepageSidebar' => 'Home Page Sidebar', 'Portfolio' => 'Portfolio', 'Megamenu1' => 'Megamenu1', 'Megamenu2' => 'Megamenu2');
// Sidebar Widgets File
$widgets_file = get_template_directory() . '/framework/plugins/importer/classic_demo/widget_data.json';
$layerslider_exists = true;
$layer_directory = get_template_directory() . '/framework/plugins/importer/classic_demo/layersliders/';
$revslider_exists = true;
$rev_directory = get_template_directory() . '/framework/plugins/importer/classic_demo/revsliders/';
// reading settings
$homepage_title = 'Home';
$fs_exists = true;
$fs_url = get_template_directory() . '/framework/plugins/importer/classic_demo/fusion_slider.zip';
}
add_filter('intermediate_image_sizes_advanced', 'avada_filter_image_sizes');
/* Import Woocommerce if WooCommerce Exists */
if (class_exists('WooCommerce') && $shop_demo == true) {
$importer = new WP_Import();
$theme_xml = $woo_xml;
$importer->fetch_attachments = true;
ob_start();
$importer->import($theme_xml);
ob_end_clean();
// Set pages
$woopages = array('woocommerce_shop_page_id' => 'Shop', 'woocommerce_cart_page_id' => 'Cart', 'woocommerce_checkout_page_id' => 'Checkout', 'woocommerce_pay_page_id' => 'Checkout → Pay', 'woocommerce_thanks_page_id' => 'Order Received', 'woocommerce_myaccount_page_id' => 'My Account', 'woocommerce_edit_address_page_id' => 'Edit My Address', 'woocommerce_view_order_page_id' => 'View Order', 'woocommerce_change_password_page_id' => 'Change Password', 'woocommerce_logout_page_id' => 'Logout', 'woocommerce_lost_password_page_id' => 'Lost Password');
foreach ($woopages as $woo_page_name => $woo_page_title) {
$woopage = get_page_by_title($woo_page_title);
if (isset($woopage) && $woopage->ID) {
update_option($woo_page_name, $woopage->ID);
// Front Page
}
}
// We no longer need to install pages
delete_option('_wc_needs_pages');
delete_transient('_wc_activation_redirect');
// Flush rules after install
flush_rewrite_rules();
} else {
$importer = new WP_Import();
/* Import Posts, Pages, Portfolio Content, FAQ, Images, Menus */
$theme_xml = $theme_xml_file;
$importer->fetch_attachments = true;
ob_start();
$importer->import($theme_xml);
ob_end_clean();
flush_rewrite_rules();
}
// Set imported menus to registered theme locations
$locations = get_theme_mod('nav_menu_locations');
// registered menu locations in theme
$menus = wp_get_nav_menus();
// registered menus
if ($menus) {
if ($demo_type == 'classic') {
$opmenu = get_page_by_title('One Page');
}
foreach ($menus as $menu) {
// assign menus to theme locations
if ($demo_type == 'classic') {
if ($menu->name == 'Main') {
$locations['main_navigation'] = $menu->term_id;
示例5: hb_importer
function hb_importer()
{
global $wpdb;
if (current_user_can('manage_options') && isset($_GET['import_content_data'])) {
if (!defined('WP_LOAD_IMPORTERS')) {
define('WP_LOAD_IMPORTERS', true);
}
// we are loading importers
if (!class_exists('WP_Importer')) {
// if main importer class doesn't exist
$wp_importer = ABSPATH . 'wp-admin/includes/class-wp-importer.php';
include $wp_importer;
}
if (!class_exists('WP_Import')) {
// if WP importer doesn't exist
$wp_import = get_template_directory() . '/includes/plugins/importer/wordpress-importer.php';
include $wp_import;
}
if (class_exists('WP_Importer') && class_exists('WP_Import')) {
// check for main import class and wp import class
$importer = new WP_Import();
$hb_import_attachments = true;
if (isset($_GET['light_import']) && $_GET['light_import'] == 'yes') {
$hb_import_attachments = false;
}
/* Delete menus to prevent menu duplication */
wp_delete_nav_menu('Main Menu');
wp_delete_nav_menu('Footer Menu');
wp_delete_nav_menu('One Page Menu');
wp_delete_nav_menu('Shortcodes Menu');
wp_delete_nav_menu('Sidebar Navigation1');
/* First Import Posts, Pages, Portfolio Content, FAQ, Images, Menus */
$theme_xml = get_template_directory() . '/includes/plugins/importer/data/highend.xml.gz';
$importer->fetch_attachments = $hb_import_attachments;
ob_start();
$importer->import($theme_xml);
ob_end_clean();
/* Import Woocommerce if WooCommerce Exists
if( class_exists('Woocommerce') ) {
$importer = new WP_Import();
$theme_xml = get_template_directory() . '/includes/plugins/importer/data/wooproducts.xml.gz';
$importer->fetch_attachments = true;
ob_start();
$importer->import($theme_xml);
ob_end_clean();
// Set pages
$woopages = array(
'woocommerce_shop_page_id' => 'Shop',
'woocommerce_cart_page_id' => 'Cart',
'woocommerce_checkout_page_id' => 'Checkout',
'woocommerce_pay_page_id' => 'Checkout → Pay',
'woocommerce_thanks_page_id' => 'Order Received',
'woocommerce_myaccount_page_id' => 'My Account',
'woocommerce_edit_address_page_id' => 'Edit My Address',
'woocommerce_view_order_page_id' => 'View Order',
'woocommerce_change_password_page_id' => 'Change Password',
'woocommerce_logout_page_id' => 'Logout',
'woocommerce_lost_password_page_id' => 'Lost Password'
);
foreach($woopages as $woo_page_name => $woo_page_title) {
$woopage = get_page_by_title( $woo_page_title );
if($woopage->ID) {
update_option($woo_page_name, $woopage->ID); // Front Page
}
}
// We no longer need to install pages
delete_option( '_wc_needs_pages' );
delete_transient( '_wc_activation_redirect' );
// Flush rules after install
flush_rewrite_rules();
}
*/
// Set imported menus to registered theme locations
$locations = get_theme_mod('nav_menu_locations');
// registered menu locations in theme
$menus = wp_get_nav_menus();
// registered menus
if ($menus) {
foreach ($menus as $menu) {
// assign menus to theme locations
if ($menu->name == 'Main Menu') {
$locations['main-menu'] = $menu->term_id;
$locations['mobile-menu'] = $menu->term_id;
} else {
if ($menu->name == 'Footer Menu') {
$locations['footer-menu'] = $menu->term_id;
} else {
if ($menu->name == 'One Page Menu') {
$locations['one-page-menu'] = $menu->term_id;
}
}
}
}
}
set_theme_mod('nav_menu_locations', $locations);
// set menus to locations
// Set reading options
//.........这里部分代码省略.........
示例6: royal_revslider_import
function royal_revslider_import($revslider_path)
{
if (!file_exists($revslider_path)) {
return;
}
global $wpdb;
if (class_exists('UniteFunctionsRev')) {
// get zip files
foreach (glob($revslider_path . '*.zip') as $filename) {
$filename = basename($filename);
$revslider_archives[] = $revslider_path . $filename;
}
foreach ($revslider_archives as $revslider_archive) {
// finally import rev slider data files
$filepath = $revslider_archive;
// check if zip file or fallback to old, if zip, check if all files exist
if (!class_exists("ZipArchive")) {
$importZip = false;
} else {
$zip = new ZipArchive();
$importZip = $zip->open($filepath, ZIPARCHIVE::CREATE);
}
if ($importZip === true) {
// true or integer. If integer, its not a correct zip file
// check if files all exist in zip
$slider_export = $zip->getStream('slider_export.txt');
$custom_animations = $zip->getStream('custom_animations.txt');
$dynamic_captions = $zip->getStream('dynamic-captions.css');
$static_captions = $zip->getStream('static-captions.css');
$content = '';
$animations = '';
$dynamic = '';
$static = '';
while (!feof($slider_export)) {
$content .= fread($slider_export, 1024);
}
if ($custom_animations) {
while (!feof($custom_animations)) {
$animations .= fread($custom_animations, 1024);
}
}
if ($dynamic_captions) {
while (!feof($dynamic_captions)) {
$dynamic .= fread($dynamic_captions, 1024);
}
}
if ($static_captions) {
while (!feof($static_captions)) {
$static .= fread($static_captions, 1024);
}
}
fclose($slider_export);
if ($custom_animations) {
fclose($custom_animations);
}
if ($dynamic_captions) {
fclose($dynamic_captions);
}
if ($static_captions) {
fclose($static_captions);
}
} else {
//check if fallback
//get content array
$content = @file_get_contents($filepath);
}
if ($importZip === true) {
//we have a zip
$db = new UniteDBRev();
//update/insert custom animations
$animations = @unserialize($animations);
if (!empty($animations)) {
foreach ($animations as $key => $animation) {
//$animation['id'], $animation['handle'], $animation['params']
$exist = $db->fetch(GlobalsRevSlider::$table_layer_anims, "handle = '" . $animation['handle'] . "'");
if (!empty($exist)) {
//update the animation, get the ID
$arrUpdate = array();
$arrUpdate['params'] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$db->update(GlobalsRevSlider::$table_layer_anims, $arrUpdate, array('handle' => $animation['handle']));
$id = $exist['0']['id'];
} else {
//insert the animation, get the ID
$arrInsert = array();
$arrInsert["handle"] = $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
}
//and set the current customin-oldID and customout-oldID in slider params to new ID from $id
$content = str_replace(array('customin-' . $animation['id'], 'customout-' . $animation['id']), array('customin-' . $id, 'customout-' . $id), $content);
}
}
//overwrite/append static-captions.css
if (!empty($static)) {
$static_cur = RevOperations::getStaticCss();
$static = $static_cur . "\n" . $static;
RevOperations::updateStaticCss($static);
}
//overwrite/create dynamic-captions.css
//parse css to classes
//.........这里部分代码省略.........
示例7: tt_revo_importer
function tt_revo_importer()
{
if (class_exists('UniteFunctionsRev')) {
global $wpdb;
$revo_directory = get_stylesheet_directory() . '/framework/addons/wordpress-importer/files/revsliders/';
$revo_files = array();
$db = new UniteDBRev();
$revo_obj = new RevSlider();
$aliases = $revo_obj->getAllSliderAliases();
foreach (glob($revo_directory . '*.txt') as $filename) {
$filename = basename($filename);
$revo_files[] = get_stylesheet_directory_uri() . '/framework/addons/wordpress-importer/files/revsliders/' . $filename;
}
foreach ($revo_files as $rev_file) {
$get_revo_file = wp_remote_get($rev_file);
$ncd = $get_revo_file['body'];
if (base64_decode($ncd, true)) {
$slider_data = @unserialize(base64_decode($ncd));
} else {
ob_start();
$ncd = preg_replace('!s:(\\d+):"(.*?)";!e', "'s:'.strlen('\$2').':\"\$2\";'", trim($ncd));
//clear errors in string
ob_end_clean();
$slider_data = @unserialize($ncd);
}
if (empty($slider_data)) {
continue;
}
$slider_params = $slider_data["params"];
if (in_array($slider_params['alias'], $aliases)) {
continue;
}
$serialized_content = serialize($slider_data);
/* Detecting Animations and Styles */
$animations = isset($slider_data["custom_animations"]) ? $slider_data["custom_animations"] : array();
if (!empty($animations)) {
foreach ($animations as $key => $animation) {
//$animation['id'], $animation['handle'], $animation['params']
$exist = $db->fetch(GlobalsRevSlider::$table_layer_anims, "handle = '" . $animation['handle'] . "'");
if (!empty($exist)) {
//update the animation, get the ID
$arrUpdate = array();
$arrUpdate['params'] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$db->update(GlobalsRevSlider::$table_layer_anims, $arrUpdate, array('handle' => $animation['handle']));
$id = $exist['0']['id'];
} else {
//insert the animation, get the ID
$arrInsert = array();
$arrInsert["handle"] = $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
}
$serialized_content = str_replace(array('customin-' . $animation['id'], 'customout-' . $animation['id']), array('customin-' . $id, 'customout-' . $id), $serialized_content);
}
}
// Static Captions
$static = isset($slider_data["static_captions"]) ? $slider_data["static_captions"] : "";
if (!empty($static)) {
RevOperations::updateStaticCss($static);
}
//overwrite/create dynamic-captions.css
//parse css to classes
if (isset($slider_data["dynamic_captions"]) && !empty($slider_data["dynamic_captions"])) {
$dynamicCss = UniteCssParserRev::parseCssToArray($slider_data["dynamic_captions"]);
if (is_array($dynamicCss) && $dynamicCss !== false && count($dynamicCss) > 0) {
foreach ($dynamicCss as $class => $styles) {
//check if static style or dynamic style
$class = trim($class);
if (strpos($class, ':hover') === false && strpos($class, ':') !== false || strpos($class, " ") !== false || strpos($class, ".tp-caption") === false || (strpos($class, ".") === false || strpos($class, "#") !== false) || strpos($class, ">") !== false) {
//.tp-caption>.imageclass or .tp-caption.imageclass>img or .tp-caption.imageclass .img
continue;
}
//is a dynamic style
if (strpos($class, ':hover') !== false) {
$class = trim(str_replace(':hover', '', $class));
$arrInsert = array();
$arrInsert["hover"] = json_encode($styles);
$arrInsert["settings"] = json_encode(array('hover' => 'true'));
} else {
$arrInsert = array();
$arrInsert["params"] = json_encode($styles);
}
//check if class exists
$result = $db->fetch(GlobalsRevSlider::$table_css, "handle = '" . $class . "'");
if (!empty($result)) {
//update
$db->update(GlobalsRevSlider::$table_css, $arrInsert, array('handle' => $class));
} else {
//insert
$arrInsert["handle"] = $class;
$db->insert(GlobalsRevSlider::$table_css, $arrInsert);
}
}
}
}
$slider_data = unserialize($serialized_content);
$slider_params = $slider_data["params"];
/*
if(isset($slider_params["background_image"])) {
$slider_params["background_image"] = UniteFunctionsWPRev::getImageUrlFromPath($slider_params["background_image"]);
//.........这里部分代码省略.........
示例8: UniteDBRev
if ($importZip === true) {
//we have a zip
$db = new UniteDBRev();
//update/insert custom animations
$animations = @unserialize($animations);
if (!empty($animations)) {
foreach ($animations as $key => $animation) {
//$animation['id'], $animation['handle'], $animation['params']
$exist = $db->fetch(GlobalsRevSlider::$table_layer_anims, "handle = '" . $animation['handle'] . "'");
if (!empty($exist)) {
//update the animation, get the ID
if ($updateAnim == "true") {
//overwrite animation if exists
$arrUpdate = array();
$arrUpdate['params'] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$db->update(GlobalsRevSlider::$table_layer_anims, $arrUpdate, array('handle' => $animation['handle']));
$id = $exist['0']['id'];
} else {
//insert with new handle
$arrInsert = array();
$arrInsert["handle"] = 'copy_' . $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
}
} else {
//insert the animation, get the ID
$arrInsert = array();
$arrInsert["handle"] = $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
}
示例9: importSliderFromPost
public function importSliderFromPost($updateAnim = true, $updateStatic = true)
{
try {
$sliderID = UniteFunctionsRev::getPostVariable("sliderid");
$sliderExists = !empty($sliderID);
if ($sliderExists) {
$this->initByID($sliderID);
}
$filepath = $_FILES["import_file"]["tmp_name"];
if (file_exists($filepath) == false) {
UniteFunctionsRev::throwError("Import file not found!!!");
}
if (!class_exists("ZipArchive")) {
$importZip = false;
} else {
$zip = new ZipArchive();
$importZip = $zip->open($filepath, ZIPARCHIVE::CREATE);
}
if ($importZip === true) {
$slider_export = $zip->getStream('slider_export.txt');
$custom_animations = $zip->getStream('custom_animations.txt');
$dynamic_captions = $zip->getStream('dynamic-captions.css');
$static_captions = $zip->getStream('static-captions.css');
if (!$slider_export) {
UniteFunctionsRev::throwError("slider_export.txt does not exist!");
}
$content = '';
$animations = '';
$dynamic = '';
$static = '';
while (!feof($slider_export)) {
$content .= fread($slider_export, 1024);
}
if ($custom_animations) {
while (!feof($custom_animations)) {
$animations .= fread($custom_animations, 1024);
}
}
if ($dynamic_captions) {
while (!feof($dynamic_captions)) {
$dynamic .= fread($dynamic_captions, 1024);
}
}
if ($static_captions) {
while (!feof($static_captions)) {
$static .= fread($static_captions, 1024);
}
}
fclose($slider_export);
if ($custom_animations) {
fclose($custom_animations);
}
if ($dynamic_captions) {
fclose($dynamic_captions);
}
if ($static_captions) {
fclose($static_captions);
}
} else {
$content = @file_get_contents($filepath);
}
if ($importZip === true) {
$db = new UniteDBRev();
$animations = @unserialize($animations);
if (!empty($animations)) {
foreach ($animations as $key => $animation) {
$exist = $db->fetch(GlobalsRevSlider::$table_layer_anims, "handle = '" . $animation['handle'] . "'");
if (!empty($exist)) {
if ($updateAnim == "true") {
$arrUpdate = array();
$arrUpdate['params'] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$db->update(GlobalsRevSlider::$table_layer_anims, $arrUpdate, array('handle' => $animation['handle']));
$id = $exist['0']['id'];
} else {
$arrInsert = array();
$arrInsert["handle"] = 'copy_' . $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
}
} else {
$arrInsert = array();
$arrInsert["handle"] = $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
}
$content = str_replace(array('customin-' . $animation['id'], 'customout-' . $animation['id']), array('customin-' . $id, 'customout-' . $id), $content);
}
dmp(__("animations imported!", REVSLIDER_TEXTDOMAIN));
} else {
dmp(__("no custom animations found, if slider uses custom animations, the provided export may be broken...", REVSLIDER_TEXTDOMAIN));
}
if (!empty($static)) {
if ($updateStatic == "true") {
RevOperations::updateStaticCss($static);
} else {
$static_cur = RevOperations::getStaticCss();
$static = $static_cur . "\n" . $static;
RevOperations::updateStaticCss($static);
}
}
//.........这里部分代码省略.........
示例10: foreach
function import_revolution_slider()
{
if (class_exists('UniteFunctionsRev') && class_exists('ZipArchive')) {
global $wpdb;
$updateAnim = true;
$updateStatic = true;
$rev_directory = get_template_directory() . '/framework/importer/data/revsliders/';
foreach (glob($rev_directory . '*.zip') as $filename) {
$filename = basename($filename);
$rev_files[] = get_template_directory() . '/framework/importer/data/revsliders/' . $filename;
}
foreach ($rev_files as $rev_file) {
$filepath = $rev_file;
$zip = new ZipArchive();
$importZip = $zip->open($filepath, ZIPARCHIVE::CREATE);
if ($importZip === true) {
$slider_export = $zip->getStream('slider_export.txt');
$custom_animations = $zip->getStream('custom_animations.txt');
$dynamic_captions = $zip->getStream('dynamic-captions.css');
$static_captions = $zip->getStream('static-captions.css');
$content = '';
$animations = '';
$dynamic = '';
$static = '';
while (!feof($slider_export)) {
$content .= fread($slider_export, 1024);
}
if ($custom_animations) {
while (!feof($custom_animations)) {
$animations .= fread($custom_animations, 1024);
}
}
if ($dynamic_captions) {
while (!feof($dynamic_captions)) {
$dynamic .= fread($dynamic_captions, 1024);
}
}
if ($static_captions) {
while (!feof($static_captions)) {
$static .= fread($static_captions, 1024);
}
}
fclose($slider_export);
if ($custom_animations) {
fclose($custom_animations);
}
if ($dynamic_captions) {
fclose($dynamic_captions);
}
if ($static_captions) {
fclose($static_captions);
}
} else {
$content = @file_get_contents($filepath);
}
if ($importZip === true) {
$db = new UniteDBRev();
$animations = @unserialize($animations);
if (!empty($animations)) {
foreach ($animations as $key => $animation) {
$exist = $db->fetch(GlobalsRevSlider::$table_layer_anims, "handle = '" . $animation['handle'] . "'");
if (!empty($exist)) {
if ($updateAnim == 'true') {
$arrUpdate = array();
$arrUpdate['params'] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$db->update(GlobalsRevSlider::$table_layer_anims, $arrUpdate, array('handle' => $animation['handle']));
$id = $exist['0']['id'];
} else {
$arrInsert = array();
$arrInsert["handle"] = 'copy_' . $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
}
} else {
$arrInsert = array();
$arrInsert["handle"] = $animation['handle'];
$arrInsert["params"] = stripslashes(json_encode(str_replace("'", '"', $animation['params'])));
$id = $db->insert(GlobalsRevSlider::$table_layer_anims, $arrInsert);
}
$content = str_replace(array('customin-' . $animation['id'], 'customout-' . $animation['id']), array('customin-' . $id, 'customout-' . $id), $content);
}
} else {
}
if (!empty($static)) {
if (isset($updateStatic) && $updateStatic == 'true') {
RevOperations::updateStaticCss($static);
} else {
$static_cur = RevOperations::getStaticCss();
$static = $static_cur . "\n" . $static;
RevOperations::updateStaticCss($static);
}
}
$dynamicCss = UniteCssParserRev::parseCssToArray($dynamic);
if (is_array($dynamicCss) && $dynamicCss !== false && count($dynamicCss) > 0) {
foreach ($dynamicCss as $class => $styles) {
$class = trim($class);
if (strpos($class, ':hover') === false && strpos($class, ':') !== false || strpos($class, " ") !== false || strpos($class, ".tp-caption") === false || (strpos($class, ".") === false || strpos($class, "#") !== false) || strpos($class, ">") !== false) {
continue;
}
if (strpos($class, ':hover') !== false) {
//.........这里部分代码省略.........