clipbucket/upload/includes/startup.php

20 lines
388 B
PHP
Raw Normal View History

<?php
/*
* As the name suggest, this file make everything ready for website
* to operate before it goes to give an output
*/
include(BASEDIR.'/modules/uploader/uploader.php');
/***
* Adding custom thumb sizes
*/
2012-09-04 10:38:50 +00:00
add_thumb_size('120x60','default');
add_thumb_size('160x120');
add_thumb_size('300x250');
add_thumb_size('640x360');
2012-09-04 10:53:58 +00:00
add_thumb_size('original');
?>