Advertisement
Guest User

Untitled

a guest
Aug 15th, 2011
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.66 KB | None | 0 0
  1. <?php defined('BASEPATH') OR exit('No direct script access allowed');
  2.  
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Asset Directory
  6. |--------------------------------------------------------------------------
  7. |
  8. | Absolute path from the webroot to your CodeIgniter root. Typically this will be your APPPATH,
  9. | WITH a trailing slash:
  10. |
  11. |   /assets/
  12. |
  13. */
  14.  
  15. $config['asset_dir'] = APPPATH_URI . 'assets/';
  16.  
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Asset URL
  20. |--------------------------------------------------------------------------
  21. |
  22. | URL to your CodeIgniter root. Typically this will be your base URL,
  23. | WITH a trailing slash:
  24. |
  25. |   /assets/
  26. |
  27. */
  28.  
  29. $config['asset_url'] = config_item('base_url').APPPATH . 'assets/';
  30.  
  31. /*
  32. |--------------------------------------------------------------------------
  33. | Theme Asset Directory
  34. |--------------------------------------------------------------------------
  35. |
  36. */
  37.  
  38. $config['theme_asset_dir'] = APPPATH_URI . 'themes/';
  39.  
  40. /*
  41. |--------------------------------------------------------------------------
  42. | Theme Asset URL
  43. |--------------------------------------------------------------------------
  44. |
  45. */
  46.  
  47. $config['theme_asset_url'] = config_item('base_url').APPPATH.'themes/';
  48.  
  49. /*
  50. |--------------------------------------------------------------------------
  51. | Asset Sub-folders
  52. |--------------------------------------------------------------------------
  53. |
  54. | Names for the img, js and css folders. Can be renamed to anything
  55. |
  56. |   /assets/
  57. |
  58. */
  59. $config['asset_img_dir'] = 'images';
  60. $config['asset_js_dir'] = 'js';
  61. $config['asset_css_dir'] = 'css';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement