Plugin Directory

Changeset 958549


Ignore:
Timestamp:
08/01/2014 08:40:43 AM (12 years ago)
Author:
globalis
Message:

First version on wordpress.org : readme updated

Location:
multisite-clone-duplicator
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • multisite-clone-duplicator/tags/0.2.0/multisite-clone-duplicator.php

    r958538 r958549  
    22/**
    33 * Plugin Name:         MultiSite Clone Duplicator
    4  * Plugin URI:          https://github.com/pierre-dargham/multisite-clone-duplicator
     4 * Plugin URI:          http://wordpress.org/plugins/multisite-clone-duplicator/
    55 * Description:         Clones an existing site into a new one in a multisite installation : copies all the posts, settings and files
    66 * Author:              Julien OGER, Pierre DARGHAM, GLOBALIS media systems
  • multisite-clone-duplicator/tags/0.2.0/readme.txt

    r958538 r958549  
    1212== Description ==
    1313
    14 MultiSite Clone Duplicator adds a "Duplicate Site" functionnality to your network installation. It allows you to clone any site of your network into a new one : all data, files, users and roles can be copied. It is usefull when you want to create multiple sites from a same template : do not waste your time on copy the same configuration again and again ! Simple and user-friendly, this plugin extends WordPress core network's functionalities without polluting the dashboard.
     14MultiSite Clone Duplicator adds a "Duplicate Site" functionnality to your network installation.
     15It allows you to clone any site of your network into a new one : all data, files, users and roles can be copied.
     16It is usefull when you want to create multiple sites from a same template : do not waste your time on copy the same configuration again and again !
     17Simple and user-friendly, this plugin extends WordPress core network's functionalities without polluting the dashboard.
    1518
    1619= Features: =
     
    4043= How does it work ? =
    4144Basically :
    42 * it creates a new user if the email was not an existing email
    43 * it creates a new blog with appropriate title and admin user
    44 * it copy all tables from cloned site, but keep some options (like title, domain, etc) of the new blog
    45 * it searches and replaces old site's URL and DOMAINS with the new ones
    46 * it copies upload directory from the old site to the upload directory of the new one (if option is checked)
    47 * it import users and roles from the old site to the new one (if option is checked)
     45* It creates a new user if the email was not an existing email
     46* It creates a new blog with appropriate title and admin user
     47* It copy all tables from cloned site, but keep some options (like title, domain, etc) of the new blog
     48* It searches and replaces old site's URL and DOMAINS with the new ones
     49* It copies upload directory from the old site to the upload directory of the new one (if option is checked)
     50* It import users and roles from the old site to the new one (if option is checked)
    4851
    4952= Does it support subdirectory AND subdomain installations ? =
     
    104107Action before / after copying files
    105108Args :
    106 * from_site_id
    107 * to_site_id
     1091. from_site_id
     1102. to_site_id
    108111
    109112**Action : mucd_before_copy_data / mucd_after_copy_data**
    110113Action before / after copying data
    111114Args :
    112 * from_site_id
    113 * to_site_id
     1151. from_site_id
     1162. to_site_id
    114117
    115118**Action : mucd_before_copy_users / mucd_after_copy_users**
    116119Action before / after copying users
    117120Args :
    118 * from_site_id
    119 * to_site_id
     1211. from_site_id
     1222. to_site_id
    120123
    121124**Filter : mucd_copy_blog_data_saved_options**
    122125Filter options that should be preserved in the new blog (original values from created blog will not be erased by copy of old site's tables)
    123126Args :
    124 * array of ( 'option_name');
     1271. array of ( 'option_name');
    125128
    126129**Filter : mucd_default_fields_to_update**
    127130Filter fields to scan for an update after data copy
    128131Args :
    129 * array of ( 'table_name' => array('field_1', 'field_2' ...));
     1321. array of ( 'table_name' => array('field_1', 'field_2' ...));
    130133
    131134**Filter : mucd_default_primary_tables_to_copy**
    132135Filter tables to duplicate when duplicated site is primary site
    133136Args :
    134 * array of ( 'table_name');
     1371. array of ( 'table_name');
    135138
    136139**Filter : mucd_copy_dirs**
    137140Filter directories and files you want to copy
    138141Args :
    139 * $string_to_replace
    140 * $from_site_id
    141 * $to_site_id
     1421. $string_to_replace
     1432. $from_site_id
     1443. $to_site_id
    142145
    143146**Filter : mucd_string_to_replace**
    144147Filter which strings we want to replace during update
    145148Args :
    146 * $dirs
    147 * $from_site_id
    148 * $to_site_id
     1491. $dirs
     1502. $from_site_id
     1513. $to_site_id
    149152
    150153
  • multisite-clone-duplicator/trunk/multisite-clone-duplicator.php

    r958538 r958549  
    22/**
    33 * Plugin Name:         MultiSite Clone Duplicator
    4  * Plugin URI:          https://github.com/pierre-dargham/multisite-clone-duplicator
     4 * Plugin URI:          http://wordpress.org/plugins/multisite-clone-duplicator/
    55 * Description:         Clones an existing site into a new one in a multisite installation : copies all the posts, settings and files
    66 * Author:              Julien OGER, Pierre DARGHAM, GLOBALIS media systems
  • multisite-clone-duplicator/trunk/readme.txt

    r958538 r958549  
    1212== Description ==
    1313
    14 MultiSite Clone Duplicator adds a "Duplicate Site" functionnality to your network installation. It allows you to clone any site of your network into a new one : all data, files, users and roles can be copied. It is usefull when you want to create multiple sites from a same template : do not waste your time on copy the same configuration again and again ! Simple and user-friendly, this plugin extends WordPress core network's functionalities without polluting the dashboard.
     14MultiSite Clone Duplicator adds a "Duplicate Site" functionnality to your network installation.
     15It allows you to clone any site of your network into a new one : all data, files, users and roles can be copied.
     16It is usefull when you want to create multiple sites from a same template : do not waste your time on copy the same configuration again and again !
     17Simple and user-friendly, this plugin extends WordPress core network's functionalities without polluting the dashboard.
    1518
    1619= Features: =
     
    4043= How does it work ? =
    4144Basically :
    42 * it creates a new user if the email was not an existing email
    43 * it creates a new blog with appropriate title and admin user
    44 * it copy all tables from cloned site, but keep some options (like title, domain, etc) of the new blog
    45 * it searches and replaces old site's URL and DOMAINS with the new ones
    46 * it copies upload directory from the old site to the upload directory of the new one (if option is checked)
    47 * it import users and roles from the old site to the new one (if option is checked)
     45* It creates a new user if the email was not an existing email
     46* It creates a new blog with appropriate title and admin user
     47* It copy all tables from cloned site, but keep some options (like title, domain, etc) of the new blog
     48* It searches and replaces old site's URL and DOMAINS with the new ones
     49* It copies upload directory from the old site to the upload directory of the new one (if option is checked)
     50* It import users and roles from the old site to the new one (if option is checked)
    4851
    4952= Does it support subdirectory AND subdomain installations ? =
     
    104107Action before / after copying files
    105108Args :
    106 * from_site_id
    107 * to_site_id
     1091. from_site_id
     1102. to_site_id
    108111
    109112**Action : mucd_before_copy_data / mucd_after_copy_data**
    110113Action before / after copying data
    111114Args :
    112 * from_site_id
    113 * to_site_id
     1151. from_site_id
     1162. to_site_id
    114117
    115118**Action : mucd_before_copy_users / mucd_after_copy_users**
    116119Action before / after copying users
    117120Args :
    118 * from_site_id
    119 * to_site_id
     1211. from_site_id
     1222. to_site_id
    120123
    121124**Filter : mucd_copy_blog_data_saved_options**
    122125Filter options that should be preserved in the new blog (original values from created blog will not be erased by copy of old site's tables)
    123126Args :
    124 * array of ( 'option_name');
     1271. array of ( 'option_name');
    125128
    126129**Filter : mucd_default_fields_to_update**
    127130Filter fields to scan for an update after data copy
    128131Args :
    129 * array of ( 'table_name' => array('field_1', 'field_2' ...));
     1321. array of ( 'table_name' => array('field_1', 'field_2' ...));
    130133
    131134**Filter : mucd_default_primary_tables_to_copy**
    132135Filter tables to duplicate when duplicated site is primary site
    133136Args :
    134 * array of ( 'table_name');
     1371. array of ( 'table_name');
    135138
    136139**Filter : mucd_copy_dirs**
    137140Filter directories and files you want to copy
    138141Args :
    139 * $string_to_replace
    140 * $from_site_id
    141 * $to_site_id
     1421. $string_to_replace
     1432. $from_site_id
     1443. $to_site_id
    142145
    143146**Filter : mucd_string_to_replace**
    144147Filter which strings we want to replace during update
    145148Args :
    146 * $dirs
    147 * $from_site_id
    148 * $to_site_id
     1491. $dirs
     1502. $from_site_id
     1513. $to_site_id
    149152
    150153
Note: See TracChangeset for help on using the changeset viewer.