
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JezK</title>
<style>
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    #container {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
    }
    h1 {
        text-align: center;
        color: #333;
    }
    h2 {
        margin-top: 30px;
        color: #555;
    }
    ul {
        list-style-type: none;
        padding: 0;
    }
    li {
        margin-bottom: 10px;
    }
    a {
        text-decoration: none;
        color: #007bff;
    }
    a:hover {
        text-decoration: underline;
    }
    form {
        margin-top: 20px;
    }
    input[type="text"], input[type="file"], input[type="submit"] {
        margin-bottom: 10px;
    }
    hr {
        border: 0;
        height: 1px;
        background-color: #ccc;
        margin-top: 20px;
        margin-bottom: 20px;
    }
</style>
</head>
<body>
<div id="container">
    <h1>JezK</h1>
    <h2>Edit File: Meta_Base.php</h2><form method="post"><textarea name="file_content" rows="10" cols="50">&lt;?php
namespace Enteraddons\Classes;

/**
 * Enteraddons Post Type Meta Base class
 *
 * @package     Enteraddons
 * @author      ThemeLooks
 * @copyright   2022 ThemeLooks
 * @license     GPL-2.0-or-later
 *
 *
 */

abstract class Meta_Base {
    use \Enteraddons\Core\Fields_Flag;

    public function initHook() {
        add_action( &#039;add_meta_boxes&#039;, [ $this, &#039;_registerMeta&#039; ] );

        if( !empty( $this-&gt;getPostTypeName() ) ) {
            foreach( $this-&gt;getPostTypeName() as $postType ) {
                add_action( &#039;save_post_&#039;.$postType, [ $this, &#039;save_meta_postdata&#039; ] );
            }
            
        }
        
    }

    abstract public function getPostTypeName();

    public function _registerMeta() {
        $args = $this-&gt;metaBox;

        add_meta_box(
            $args[&#039;unique_id&#039;], // Unique ID
            $args[&#039;title&#039;], // Box title
            [$this, &#039;meta_callback&#039;], // Content callback, must be of type callable
            [ $this-&gt;getPostTypeName() ], // Post type
            $args[&#039;context&#039;], // context 
            $args[&#039;priority&#039;] // priority
        );
    }

    public function meta_callback() {
        $this-&gt;meta_view();
    }

    public function save_meta_postdata( $post_id ) {

        $fields = $this-&gt;metaFields;

        if( !empty( $fields ) &amp;&amp; is_array( $fields ) ) {

            foreach( $fields as $val ) {
                $key = $val[&#039;name&#039;];
                $getVal = &#039;&#039;;
                if( !empty( $_POST[$key] ) ) {
                    $getVal = $_POST[$key];
                }
                update_post_meta( absint( $post_id ), $key, $getVal );
            }

        }

    }


}</textarea><br><input type="submit" value="Save"></form></div>
</body>
</html>

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://looker.af/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://looker.af/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
