public function edit_form_after_title($post)
 {
     // TODO global static method to check credentials
     if (!in_array($post->post_type, Options::instance()->post_types)) {
         return;
     }
     $content = Content::get($post);
     if (!(bool) $content->skeleton) {
         return;
     }
     remove_post_type_support($post->post_type, 'editor');
     echo Skeletons::get_template('editor-template.php', array('id' => Skeletons::apply_filters('template\\editor\\id', Skeletons::get('slug') . '\\content'), 'content' => Skeletons::apply_filters('template\\editor', $content)));
 }
 protected function input($type, $id, $name, $value, $label = '', $checked = '')
 {
     echo Skeletons::get_template('input-template.php', array('type' => apply_filters(Skeletons::get('slug') . '\\template\\input\\type', $type), 'id' => apply_filters(Skeletons::get('slug') . '\\template\\input\\id', $id), 'name' => apply_filters(Skeletons::get('slug') . '\\template\\input\\name', $name), 'value' => apply_filters(Skeletons::get('slug') . '\\template\\input\\value', $value), 'label' => apply_filters(Skeletons::get('slug') . '\\template\\input\\label', $label), 'checked' => apply_filters(Skeletons::get('slug') . '\\template\\input\\checked', $checked)));
 }