Files
old-new-wiaas/backend/app/plugins/wiaas/includes/class-wiass-templates.php

12 lines
381 B
PHP
Raw Normal View History

<?php
class Wiaas_Templates {
public static function init() {
require_once dirname( __FILE__ ) . '/templates/class-wiaas-template-category.php';
require_once dirname( __FILE__ ) . '/templates/class-wiaas-template-category-object.php';
2018-09-20 12:34:54 +02:00
require_once dirname(__FILE__) . '/templates/class-wiaas-wc-product-template.php';
}
}
Wiaas_Templates::init();