| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- /*******************************************************************************
- * Copyright (c) 2019, Code Atlantic LLC
- ******************************************************************************/
- /**
- * @param $name
- * @param null $settings
- * @param array $extra_meta
- *
- * @return int|\WP_Error
- */
- function pum_install_theme( $name, $settings = null, $extra_meta = array() ) {
- if ( ! isset( $settings ) ) {
- $settings = PUM_Admin_Themes::defaults();
- }
- $new_theme_id = @wp_insert_post( array(
- 'post_title' => $name,
- 'post_author' => get_current_user_id(),
- 'post_status' => 'publish',
- 'post_type' => 'popup_theme',
- 'comment_status' => 'closed',
- 'meta_input' => array_merge( (array) $extra_meta, array(
- 'popup_theme_settings' => $settings,
- ) ),
- ) );
- pum_reset_assets();
- return $new_theme_id;
- }
- /**
- * @param $hash
- *
- * @return mixed
- */
- function pum_import_theme_from_repo( $hash ) {
- $theme_data = array(
- 'name' => __( 'Imported Theme', 'popup-maker' ),
- 'settings' => PUM_Admin_Themes::defaults(),
- 'original_author' => 'Daniel',
- );
- return pum_install_theme( $theme_data['name'], $theme_data['settings'], array(
- '_pum_theme_repo_hash' => $hash,
- '_pum_theme_repo_author' => $theme_data['original_author'],
- ) );
- }
- /**
- * Installs a default theme and returns the new theme ID.
- *
- * @since 1.8.0
- *
- * @return int|\WP_Error
- */
- function pum_install_default_theme() {
- return pum_install_theme( __( 'Default Theme', 'popup-maker' ), null, array(
- '_pum_built_in' => 'default-theme',
- '_pum_default_theme' => true,
- 'popup_theme_data_version' => 3,
- ) );
- }
|