Plugin Directory

Changeset 2156730


Ignore:
Timestamp:
09/15/2019 09:56:35 AM (7 years ago)
Author:
akithemes
Message:

image loaded from git

Location:
aki-toolset
Files:
139 added
4 edited

Legend:

Unmodified
Added
Removed
  • aki-toolset/trunk/aki-toolset.php

    r2145501 r2156730  
    44/*
    55Plugin Name: Aki Toolset
    6 Description: Install One Click Demo Import Plugin First. Import the demos of Aki Themes Product. The activated themes demo data will show under Appearance > Import Dummy Data. 
    7 Version:     1.0.0
    8 Author:      Aki Themes 
     6Description: Install One Click Demo Import Plugin First. Import the demos of Aki Themes Product. The activated themes demo data will show under Appearance > Import Dummy Data.
     7Version:     1.0.1
     8Author:      Aki Themes
    99Author URI:  http://www.akithemes.com
    1010License:     GPLv2 or later
     
    3333     require plugin_dir_path( __FILE__ ) . '/free-blog-dummy-data/aki-toolset-free-blog-dummy-data.php';
    3434}
     35/**
     36 * Condition for Opus Blog Plus Demo Import.
     37 */
     38if ( 'Opus Blog Plus' == $aki_themes_name->name || 'Opus Blog Plus' == $aki_themes_name->parent_theme ) {
     39   
     40    require plugin_dir_path( __FILE__ ) . '/opus-blog-plus-dummy-data/aki-toolset-opus-blog-plus-dummy-data.php';
     41}
  • aki-toolset/trunk/free-blog-dummy-data/aki-toolset-free-blog-dummy-data.php

    r2145501 r2156730  
    2222        'local_import_widget_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/main/widget.wie',
    2323        'local_import_customizer_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/main/customizer.dat',
    24         'import_preview_image_url'   => plugin_dir_url( __FILE__ ) . 'dummy-data-files/assets/main.jpg',
     24        'import_preview_image_url'   => 'https://raw.githubusercontent.com/akithemes/free-blog/master/screenshots/main.jpg',
    2525        'import_notice'              => __( 'Import the demo and check the options inside Appearance > Customize.', 'aki-toolset' ),
    2626        'preview_url'                => 'http://demo.akithemes.com/free-blog/',
     
    3333        'local_import_widget_file'     =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/masonry/widget.wie',
    3434        'local_import_customizer_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/masonry/customizer.dat',
    35         'import_preview_image_url'   => plugin_dir_url( __FILE__ ) . 'dummy-data-files/assets/masonry.jpg',
     35        'import_preview_image_url'   => 'https://raw.githubusercontent.com/akithemes/free-blog/master/screenshots/masonry.jpg',
    3636        'import_notice'              => __( 'Import the demo and check the options inside Appearance > Customize.', 'aki-toolset' ),
    3737        'preview_url'                => 'http://demo.akithemes.com/free-blog-1/',
  • aki-toolset/trunk/opus-blog-dummy-data/aki-toolset-opus-blog-dummy-data.php

    r2145501 r2156730  
    1616function aki_toolset_import_files() {
    1717    return array(
    18     array(
    19         'import_file_name'=> __('Main Demo','aki-toolset'),
    20         'categories'      =>  array( 'Main Demo' ),
    21         'local_import_file'=> plugin_dir_path( __FILE__ ). 'dummy-data-files/main/demo.xml',
    22         'local_import_widget_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/main/widget.wie',
    23         'local_import_customizer_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/main/customizer.dat',
    24         'import_preview_image_url'   => plugin_dir_url( __FILE__ ) . 'dummy-data-files/assets/main.jpg',
    25         'import_notice'              => __( 'Import the demo and check the options inside Appearance > Customize.', 'aki-toolset' ),
    26         'preview_url'                => 'http://demo.akithemes.com/opus-blog/',
    27     ),
    28 
    29     array(
    30         'import_file_name'=> __('Masonry Demo','aki-toolset'),
    31         'categories'      =>  array( 'Masonry' ),
    32         'local_import_file'=> plugin_dir_path( __FILE__ ) . 'dummy-data-files/masonry/demo.xml',
    33         'local_import_widget_file'     =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/masonry/widget.wie',
    34         'local_import_customizer_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/masonry/customizer.dat',
    35         'import_preview_image_url'   => plugin_dir_url( __FILE__ ) . 'dummy-data-files/assets/masonry.png',
    36         'import_notice'              => __( 'Import the demo and check the options inside Appearance > Customize.', 'aki-toolset' ),
    37         'preview_url'                => 'http://demo.akithemes.com/opus-blog-1/',
    38     ),
    39 
    40     array(
    41         'import_file_name'=> __('Gutenberg Demo','aki-toolset'),
    42         'categories'      =>  array( 'Gutenberg' ),
    43         'local_import_file'=> plugin_dir_path( __FILE__ ) . 'dummy-data-files/gutenberg/demo.xml',
    44         'local_import_widget_file'     =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/gutenberg/widget.wie',
    45         'local_import_customizer_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/gutenberg/customizer.dat',
    46         'import_preview_image_url'   => plugin_dir_url( __FILE__ ) . 'dummy-data-files/assets/gutenberg.jpg',
    47         'import_notice'              => __( 'Import the demo and check the options inside Appearance > Customize.', 'aki-toolset' ),
    48         'preview_url'                => 'http://demo.akithemes.com/opus-blog-2/',
    49     ),
     18        array(
     19            'import_file_name'=> __('Main Demo','aki-toolset'),
     20            'categories'      =>  array( 'Main Demo' ),
     21            'local_import_file'=> plugin_dir_path( __FILE__ ). 'dummy-data-files/main/demo.xml',
     22            'local_import_widget_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/main/widget.wie',
     23            'local_import_customizer_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/main/customizer.dat',
     24            'import_preview_image_url'   => 'https://raw.githubusercontent.com/akithemes/opus-blog-demo/master/screenshots/main.jpg',
     25            'import_notice'              => __( 'Import the demo and check the options inside Appearance > Customize.', 'aki-toolset' ),
     26            'preview_url'                => 'http://demo.akithemes.com/opus-blog/',
     27        ),
     28        array(
     29            'import_file_name'=> __('Related Post Demo','aki-toolset'),
     30            'categories'      =>  array( 'Main Demo' ),
     31            'local_import_file'=> plugin_dir_path( __FILE__ ) . 'dummy-data-files/related/related.xml',
     32            'local_import_widget_file'     =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/related/related.wie',
     33            'local_import_customizer_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/related/related.dat',
     34            'import_preview_image_url'   => 'https://raw.githubusercontent.com/akithemes/opus-blog-demo/master/screenshots/related.jpg',
     35            'import_notice'              => __( 'Import the demo and check the options inside Appearance > Customize.', 'aki-toolset' ),
     36            'preview_url'                => 'http://demo.akithemes.com/opus-blog-3/',
     37        ),
     38   
     39        array(
     40            'import_file_name'=> __('Masonry Demo','aki-toolset'),
     41            'categories'      =>  array( 'Masonry' ),
     42            'local_import_file'=> plugin_dir_path( __FILE__ ) . 'dummy-data-files/masonry/demo.xml',
     43            'local_import_widget_file'     =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/masonry/widget.wie',
     44            'local_import_customizer_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/masonry/customizer.dat',
     45            'import_preview_image_url'   => 'https://raw.githubusercontent.com/akithemes/opus-blog-demo/master/screenshots/masonry.png',
     46            'import_notice'              => __( 'Import the demo and check the options inside Appearance > Customize.', 'aki-toolset' ),
     47            'preview_url'                => 'http://demo.akithemes.com/opus-blog-1/',
     48        ),
     49   
     50        array(
     51            'import_file_name'=> __('Gutenberg Demo','aki-toolset'),
     52            'categories'      =>  array( 'Gutenberg' ),
     53            'local_import_file'=> plugin_dir_path( __FILE__ ) . 'dummy-data-files/gutenberg/demo.xml',
     54            'local_import_widget_file'     =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/gutenberg/widget.wie',
     55            'local_import_customizer_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/gutenberg/customizer.dat',
     56            'import_preview_image_url'   =>'https://raw.githubusercontent.com/akithemes/opus-blog-demo/master/screenshots/gutenberg.jpg',
     57            'import_notice'              => __( 'Import the demo and check the options inside Appearance > Customize.', 'aki-toolset' ),
     58            'preview_url'                => 'http://demo.akithemes.com/opus-blog-2/',
     59        ),
     60        array(
     61            'import_file_name'=> __('RTL Demo','aki-toolset'),
     62            'categories'      =>  array( 'RTL' ),
     63            'local_import_file'=> plugin_dir_path( __FILE__ ) . 'dummy-data-files/rtl/rtl.xml',
     64            'local_import_widget_file'     =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/rtl/rtl.wie',
     65            'local_import_customizer_file' =>  plugin_dir_path( __FILE__ ) . 'dummy-data-files/rtl/rtl.dat',
     66            'import_preview_image_url'   => 'https://raw.githubusercontent.com/akithemes/opus-blog-demo/master/screenshots/rtl.jpg',
     67            'import_notice'              => __( 'Import the demo and check the options inside Appearance > Customize.', 'aki-toolset' ),
     68            'preview_url'                => 'http://demo.akithemes.com/opus-blog-rtl/',
     69        ),
    5070);
    51 
    5271}
    5372add_filter( 'pt-ocdi/import_files', 'aki_toolset_import_files' );
  • aki-toolset/trunk/readme.txt

    r2145501 r2156730  
    55Tested up to: 5.2.2
    66Requires PHP: 4.6
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 Import Dummy data for themes developed by Aki Themes. 
     11Import Dummy data for themes developed by Aki Themes.
    1212== Description ==
    1313A easy plugin to import dummy data for themes by Aki Themes.
     
    19191. Visit 'Plugins > Add New'
    20202. Search for Aki Toolkit
    21 3. Activate Aki Toolkit plugin from your Plugins page. 
    22 4. Go to the Appearance -> Import Demo Data 
     213. Activate Aki Toolkit plugin from your Plugins page.
     224. Go to the Appearance -> Import Demo Data
    2323Note: Make sure, One click demo import plugin is installed and activated first.
    2424
     
    27271. Download aki-toolkit.
    28282. Upload the 'aki-toolkit' directory to your '/wp-content/plugins/' directory, using your favorite method (ftp, sftp, scp, etc...)
    29 3. Activate Aki Toolkit from your Plugins page. 
     293. Activate Aki Toolkit from your Plugins page.
    30304. Go to the Customizer (Appearance -> Customize) to add custom color to your site.
    3131
    3232== Frequently Asked Questions ==
    33 1. Where I can see the Settings? 
     331. Where I can see the Settings?
    3434Check all the available options inside Appearance > One Click Demo Import
    3535
     
    4141
    4242== Changelog ==
     43= 1.0.1 =
     44* Loaded preview image from github
     45* Added Opus Blog Plus Demos
     46
    4347= 1.0.0 =
    4448* Submitted on .org
Note: See TracChangeset for help on using the changeset viewer.