Files
old-new-wiaas/backend/app/plugins/wiaas/includes/class-wiass-templates.php
2018-09-20 12:34:54 +02:00

12 lines
381 B
PHP

<?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';
require_once dirname(__FILE__) . '/templates/class-wiaas-wc-product-template.php';
}
}
Wiaas_Templates::init();