44 lines
1.7 KiB
PHP
44 lines
1.7 KiB
PHP
<?php
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
function upstudy_import_flies()
|
|
{
|
|
$specific_path = 'up-57731263/';
|
|
$ocdi_repo = upstudy_ocdi_plugin_repo();
|
|
$ocdi_dif_main = '/dtf/main/';
|
|
$repo_path = $ocdi_repo . $ocdi_dif_main;
|
|
$author_site_link = 'https://thepixelcurve.com/wp/upstudy/';
|
|
$main_url = 'https://raw.githubusercontent.com/';
|
|
|
|
return array(
|
|
array(
|
|
'import_file_name' => 'Tutor LMS',
|
|
'categories' => array('Tutor'),
|
|
'import_preview_image_url' => UPSTUDY_URI . 'admin/demo/images/unlock.jpg',
|
|
'preview_url' => 'https://thepixelcurve.com/wp/upstudy/tut/',
|
|
),
|
|
|
|
array(
|
|
'import_file_name' => 'LearnPress LMS',
|
|
'categories' => array('LearnPress'),
|
|
'import_preview_image_url' => UPSTUDY_URI . 'admin/demo/images/unlock.jpg',
|
|
'preview_url' => 'https://thepixelcurve.com/wp/upstudy/lp/',
|
|
),
|
|
|
|
array(
|
|
'import_file_name' => 'LearnDash LMS',
|
|
'categories' => array('LearnDash'),
|
|
'import_preview_image_url' => UPSTUDY_URI . 'admin/demo/images/unlock.jpg',
|
|
'preview_url' => 'https://thepixelcurve.com/wp/upstudy/ld/',
|
|
),
|
|
|
|
array(
|
|
'import_file_name' => 'RTL Language',
|
|
'categories' => array('RTL'),
|
|
'import_preview_image_url' => UPSTUDY_URI . 'admin/demo/images/unlock.jpg',
|
|
'preview_url' => 'https://thepixelcurve.com/wp/upstudy/ld/',
|
|
),
|
|
|
|
);
|
|
}
|