Jake Vanderwerf
4 hours ago 57d34239ee9ddb0bafe7b451edd766c2089fc9d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
<?php
// /content/faq.php
 
use JVBase\registrar\Registrar;
if (!defined('ABSPATH')) {
    exit;
}
 
 
add_action('jvbDefineRegistrar', 'altr_faq');
add_action('jvbDefineRegistrarFields', 'altr_faq_fields');
 
add_action('plugins_loaded', 'altr_faq',1);
//Add fields later so we can verify taxonomies/post types exist
add_action('plugins_loaded', 'altr_faq_fields', 2);
 
add_filter('altr_FaqSchemaDefault', 'altr_faq_schema');
add_filter('altr_FaqMetaDefault', 'altr_faq_meta');
add_filter('altr_FaqArchiveDefault', 'altr_faq_archive');
 
function altr_faq(){
    if (!class_exists('JVBase\registrar\Registrar')) {
        return;
    }
    $faq = Registrar::forPost('faq', 'FAQ', 'FAQs')
        ->setIcon('question')
        ->make([
            'rewrite'   => [
                'slug'          => 'faq',
                'with_front'    => false,
            ],
            'taxonomies'    => [
                'section',
            ],
            'rewrite_taxonomy' => 'section'
        ])
        ->setAll([
            'show_directory',
            'is_faq'
        ]);
 
//$directory = $faq->getConfig('directory');
 
}
 
function altr_faq_fields():void
{
    if (!class_exists('JVBase\registrar\Registrar')) {
        return;
    }
    $faq = Registrar::getInstance('faq');
    $breadcrumbs = $faq->config('breadcrumbs');
    $breadcrumbs->setCrumb('section');
 
 
    $fields = $faq->fields();
    $fields->addField('section', [
        'type'      => 'selector',
        'subtype'   => 'taxonomy',
        'taxonomy'  => 'section',
        'label'     => 'FAQ Section',
    ]);
}
 
function altr_faq_schema():array
{
    return [
        'type'              => 'JVBase\managers\SEO\render\Thing\CreativeWork\WebPage\QAPage',
        'name'              => '{{post_title}} | FAQs on {{section.name}}',
    ];
}
 
function altr_faq_meta():array
{
    return[
        'name' => '{{post_title}} | FAQs {{section.name}}',
    ];
}
 
function altr_faq_archive(array $defaults):array
{
    return array_merge($defaults, [
        'name' => 'Frequently Asked Questions',
        'description' => 'Common Questions about Laser Tattoo Removal.'
    ]);
}
 
function altr_faq_reference_schema(array $defaults):array
{
    return $defaults;
}
 
 
//function altr_faq():array
//{
//    return [
//        'singular'       => 'FAQ',
//        'plural'       => 'FAQs',
//        'dash_description' => 'Manage your answers',
//        'capability_type' => ['faq', 'faqs'],
//        'breadcrumb'    => 'FAQ',
//        'addCrumb'      => 'section',
//        'show_directory'=> true,
//        'directory_extra'=> ['section'],
//        'dash_title'    => 'FAQs',
//        'icon'         => 'question',
//        'rewrite_taxonomy' => 'section',
//        'rewrite'      => [
//            'slug'       => 'faq',
//            'with_front' => false,
//        ],
//        'fields'       => [
//            'post_title'     => [
//                'type'  => 'text',
//                'label' => 'Question',
//            ],
//            'post_status'         => [
//                'type'      => 'radio',
//                'label'     => 'Status',
//                'hidden'    => true,
//                'options'   => [
//                    'publish'   => 'Show',
//                    'draft'     => 'Hide',
//                    'trash'     => 'Scrap',
//                    'delete'    => 'Permanently Delete'
//                ]
//            ],
//            'post_content'        => [
//                'type'  => 'textarea',
//                'label' => 'Answer',
//                'quill' => true,
//            ],
//        ],
//        'single_image' => false,
//        'upload_title' => 'Upload Before & Afters',
//        'seo'   => [
//            'meta'  => [
//                'title'         => '{{post_title}} | FAQ',
//                'description'   => '{{post_excerpt}}'
//            ],
//            'schema' => [
//                'type'      => 'FAQPage',
//                'question'   => '{{post_title}}',
//                'answer'    => '{{post_excerpt}}',
//            ],
//            'archive' => [
//                'type'  => 'FAQPage',
//                'name'  => 'Common Questions about Laser Tattoo Removal',
//            ],
//        ]
//    ];
//}
//
//
//add_action('wp_enqueue_scripts', 'nebDashScripts', 9999);
//function nebDashScripts() {
//    global $wp;
//    $page = str_replace('dash/', '', $wp->request);
//    if ($page === 'settings') {
//        wp_enqueue_script('jvb-form');
//        wp_enqueue_script('jvb-tabs');
//        wp_enqueue_script('jvb-populate-form');
//        wp_enqueue_script('jvb-copy-hours');
//        wp_enqueue_script('jvb-quill');
//        wp_enqueue_script('jvb-store');
//        $script = 'function loadSettingsPage() {
//            let tabs = new window.jvbTabs(document.querySelector(".replace"));
//                      let store = new window.jvbStore({
//                          name: "options",
//                          endpoint: "options",
//                          headers: {
//                              "action_nonce": jvbSettings.dash,
//                            }
//                      });
//                      
//                      let form = new window.jvbForm(store);
//                      let forms = [ "#hours", "#menu-sections"];
//                      let setForms = {};
//                      forms.forEach(f => {
//                          let gotF = document.querySelector(`form${f}`);
//                          setForms[f] = form.registerForm(gotF);
//                          
//                      });                     
//                      
//                      form.subscribe((event, data) => {
//                            switch (event) {
//                                case "form-submit":
//                                case "form-autosave":
//                                    window.jvbQueue.addToQueue({
//                                        endpoint: "options",
//                                        headers: {
//                                            "action_nonce": jvbSettings.dash,
//                                        },
//                                        data: data.changes,
//                                        popup: `Saving options...`,
//                                        title: "Saving Options"
//                                    });
//                                    break;
//                            }
//                        });
//                  }
//                  document.addEventListener("DOMContentLoaded", ()=>{
//                       loadSettingsPage()
//                    });
//                  ';
//        $output = wp_add_inline_script('jvb-form', $script, 'after');
//    } elseif ($page === 'dash') {
//        wp_enqueue_script('jvb-form');
//        wp_enqueue_script('jvb-store');
//        $script = 'function loadDashPage() {
//            
//                let store = new window.jvbStore({
//                    name: "options",
//                    endpoint: "options",
//                    headers: {
//                        "action_nonce": jvbSettings.dash,
//                    }
//                });
//                
//                let form = new window.jvbForm(store);
//                let forms = [ "#options"];
//                let setForms = {};
//                forms.forEach(f => {
//                    let gotF = document.querySelector(`form${f}`);
//                    setForms[f] = form.registerForm(gotF);
//                    
//                });                       
//                
//                form.subscribe((event, data) => {
//                    switch (event) {
//                        case "form-submit":
//                        case "form-autosave":
//                            window.jvbQueue.addToQueue({
//                                endpoint: "options",
//                                headers: {
//                                    "action_nonce": jvbSettings.dash,
//                                },
//                                data: data.changes,
//                                popup: `Saving options...`,
//                                title: "Saving Options"
//                            });
//                            break;
//                    }
//                });
//            }
//            document.addEventListener("DOMContentLoaded", ()=>{
//               loadDashPage()
//            });
//            ';
////        $output = wp_add_inline_script('jvb-form', $script, 'after');
//    }
//}