| File was renamed from content/setup.php |
| | |
| | | * - 'section' => (string) the slug of the section, as defined above |
| | | */ |
| | | |
| | | require(AJV_DIR . '/content/art.php'); |
| | | require(AJV_DIR . '/content/design.php'); |
| | | require(AJV_DIR . '/content/development.php'); |
| | | require(AJV_DIR . '/content/strategy.php'); |
| | | require(AJV_DIR . '/content/support.php'); |
| | | require(AJV_DIR . '/content/writing.php'); |
| | | |
| | | add_filter('jvb_content', 'ajv_content'); |
| | | function ajv_content($content):array |
| | | require(AJV_DIR . '/content/faq.php'); |
| | | require(AJV_DIR . '/content/progress.php'); |
| | | require(AJV_DIR . '/content/terms.php'); |
| | | |
| | | add_filter('jvb_content', 'altr_content'); |
| | | function altr_content($content):array |
| | | { |
| | | return [ |
| | | 'design' => ajv_design(), |
| | | 'development' => ajv_development(), |
| | | 'strategy' => ajv_strategy(), |
| | | 'art' => ajv_art(), |
| | | 'writing' => ajv_writing(), |
| | | 'support' => ajv_support(), |
| | | 'faq' => altr_faq(), |
| | | 'progress' => altr_progress(), |
| | | 'terms' => altr_terms(), |
| | | ]; |
| | | } |