Sindbad~EG File Manager
<?php
return array(
/* Layouts, integrated, template missing*/
'layouts-integrated-template-missing' => array(
'type' => 'template',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Active',
'Types_Helper_Condition_Layouts_Compatible',
'Types_Helper_Condition_Layouts_Template_Missing'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'There is no template layout for %POST-LABEL-SINGULAR% items.', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'target' => '%POST-PERMALINK%'
),
array(
'type' => 'link',
'class' => 'button-primary types-button',
'label' => __( 'Create template', 'wpcf' ),
'target' => '%POST-CREATE-LAYOUT-TEMPLATE%',
)
),
),
/* Layouts, template */
'layouts-template' => array(
'type' => 'template',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Active',
'Types_Helper_Condition_Layouts_Template_Exists'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'The template layout for %POST-LABEL-SINGULAR% items is "%POST-LAYOUT-TEMPLATE%".', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'target' => '%POST-PERMALINK%'
),
array(
'type' => 'link',
'class' => 'button',
'label' => __( 'Edit template', 'wpcf' ),
'target' => '%POST-EDIT-LAYOUT-TEMPLATE%'
),
),
),
/* For posts and pages we always show template file if it exists */
'single-exists-for-posts-pages' => array(
'type' => 'template',
'conditions'=> array(
'Types_Helper_Condition_Type_Post_Or_Page',
'Types_Helper_Condition_Single_Exists',
'Types_Helper_Condition_Single_Has_Fields'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Your theme displays single %POST-LABEL-SINGULAR% pages using the template file: %POST-TEMPLATE-FILE%', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'target' => '%POST-PERMALINK%'
),
),
),
/* Layouts, has template with missing fields. */
'layouts-single-fields-missing' => array(
'type' => 'template',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Active',
'Types_Helper_Condition_Layouts_Template_Missing',
'Types_Helper_Condition_Single_No_Fields',
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Your theme’s template file %POST-TEMPLATE-FILE% for displaying %POST-LABEL-SINGULAR% items is missing custom fields.', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'target' => '%POST-PERMALINK%'
),
array(
'type' => 'link',
'class' => 'button-primary types-button',
'label' => __( 'Create template', 'wpcf' ),
'target' => '%POST-CREATE-LAYOUT-TEMPLATE%',
)
),
),
/* Layouts, single.php exists, but layouts missing */
'layouts-php-template-exists-layouts-template-missing' => array(
'type' => 'template',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Active',
'Types_Helper_Condition_Layouts_Template_Missing',
'Types_Helper_Condition_Single_Exists'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Your theme displays single %POST-LABEL-SINGULAR% pages using the template file: %POST-TEMPLATE-FILE%', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'target' => '%POST-PERMALINK%'
),
array(
'type' => 'link',
'class' => 'button-primary types-button',
'label' => __( 'Create template', 'wpcf' ),
'target' => '%POST-CREATE-LAYOUT-TEMPLATE%',
)
),
),
/* Layouts, template missing*/
'layouts-template-missing' => array(
'type' => 'template',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Active',
'Types_Helper_Condition_Layouts_Template_Missing'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'There is no template layout for %POST-LABEL-SINGULAR% items.', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'target' => '%POST-PERMALINK%'
),
array(
'type' => 'link',
'class' => 'button-primary types-button',
'label' => __( 'Create template', 'wpcf' ),
'target' => '%POST-CREATE-LAYOUT-TEMPLATE%',
)
),
),
/* No Views, No Layouts, Single Missing */
'single-missing' => array(
'type' => 'template',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Missing',
'Types_Helper_Condition_Single_Missing'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Your theme doesn’t have a template to display %POST-LABEL-PLURAL%.', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'target' => '%POST-PERMALINK%'
),
array(
'type' => 'dialog',
'class' => 'button-primary types-button',
'label' => __( 'Resolve', 'wpcf' ),
'dialog' => array(
'id' => 'resolve-single-no-template',
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Toolset plugins let you design templates for single items (%POST-LABEL-SINGULAR% pages) without
writing PHP. Your templates will include all the fields that you need and your design.', 'wpcf' )
),
array(
'type' => 'link',
'class' => 'button-primary types-button',
'external' => true,
'label' => __( 'Learn about creating templates with Toolset', 'wpcf' ),
'target' => Types_Helper_Url::get_url( 'creating-templates-with-toolset', 'popup', false, 'gui' ),
),
)
)
)
),
),
/* No Views, No Layouts, Single, without Fields */
'single-fields-missing' => array(
'type' => 'template',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Missing',
'Types_Helper_Condition_Single_No_Fields',
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Your theme’s template file for displaying %POST-LABEL-SINGULAR% items is missing custom fields.', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => array(
'default' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'post-edit' => __( 'Visit this %POST-LABEL-SINGULAR%', 'wpcf' ),
),
'target' => '%POST-PERMALINK%'
),
array(
'type' => 'dialog',
'class' => 'button-primary types-button',
'label' => __( 'Resolve', 'wpcf' ),
'dialog' => array(
'id' => 'resolve-single-no-fields',
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Toolset plugins let you design templates for single items (%POST-LABEL-SINGULAR% pages),
with all the fields that you need to display.', 'wpcf' )
),
array(
'type' => 'link',
'class' => 'button-primary types-button',
'external' => true,
'label' => __( 'Learn about creating templates with Toolset', 'wpcf' ),
'target' => Types_Helper_Url::get_url( 'creating-templates-with-toolset', 'popup', false, 'gui' ),
),
)
)
)
),
),
/* No Views, No Layouts, Single with Fields */
'single-fields' => array(
'type' => 'template',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Missing',
'Types_Helper_Condition_Single_Has_Fields',
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Your theme displays single %POST-LABEL-SINGULAR% pages using the template file: %POST-TEMPLATE-FILE%', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'target' => '%POST-PERMALINK%'
),
),
),
/* Views, has template with missing fields. */
'views-single-fields-missing' => array(
'type' => 'template',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Template_Missing',
'Types_Helper_Condition_Single_No_Fields',
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Your theme’s template file %POST-TEMPLATE-FILE% for displaying %POST-LABEL-SINGULAR% items is missing custom fields.', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'target' => '%POST-PERMALINK%'
),
array(
'type' => 'link',
'class' => 'button-primary types-button',
'target' => '%POST-CREATE-CONTENT-TEMPLATE%',
'label' => __( 'Create Content Template', 'wpcf' )
)
),
),
/* Views, single.php exists, but views missing */
'views-php-template-exists-views-template-missing' => array(
'type' => 'template',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Template_Missing',
'Types_Helper_Condition_Single_Exists'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Your theme displays single %POST-LABEL-SINGULAR% pages using the template file: %POST-TEMPLATE-FILE%', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'target' => '%POST-PERMALINK%'
),
array(
'type' => 'link',
'class' => 'button-primary types-button',
'target' => '%POST-CREATE-CONTENT-TEMPLATE%',
'label' => __( 'Create Content Template', 'wpcf' )
)
),
),
/* Views, template missing */
'views-template-missing' => array(
'type' => 'template',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Template_Missing'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'There is no Content Template for %POST-LABEL-SINGULAR% items.', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'target' => '%POST-PERMALINK%'
),
array(
'type' => 'link',
'class' => 'button-primary types-button',
'target' => '%POST-CREATE-CONTENT-TEMPLATE%',
'label' => __( 'Create Content Template', 'wpcf' )
)
),
),
/* Views, template */
'views-template' => array(
'type' => 'template',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Template_Exists'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'The Content Template for %POST-LABEL-PLURAL% is "%POST-CONTENT-TEMPLATE-NAME%"', 'wpcf' )
),
array(
'type' => 'link',
'external' => true,
'label' => array(
'default' => __( 'Visit example %POST-LABEL-SINGULAR%', 'wpcf' ),
'post-edit' => __( 'Visit this %POST-LABEL-SINGULAR%', 'wpcf' ),
),
'target' => '%POST-PERMALINK%'
),
array(
'type' => 'link',
'class' => 'button',
'label' => __( 'Edit Content Template', 'wpcf' ),
'target' => '%POST-EDIT-CONTENT-TEMPLATE%'
),
),
),
);
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists