| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Copyright (C) 2008 by Phase2 Technology.
|
| 4 |
Author: Irakli Nadareishvili
|
| 5 |
|
| 6 |
This program is free software; you can redistribute it and/or modify
|
| 7 |
it under the terms of the GNU General Public License.
|
| 8 |
This program is distributed in the hope that it will be useful,
|
| 9 |
but WITHOUT ANY WARRANTY. See the LICENSE.txt file for more details.
|
| 10 |
|
| 11 |
*/
|
| 12 |
|
| 13 |
function block_edit_init() {
|
| 14 |
if ( user_access('administer blocks') ) {
|
| 15 |
if (function_exists('drupal_get_path')){
|
| 16 |
$mpath = drupal_get_path('module', 'block_edit');
|
| 17 |
drupal_add_js($mpath . '/block_edit.js' );
|
| 18 |
drupal_add_css($mpath . '/block_edit.css' );
|
| 19 |
}
|
| 20 |
}
|
| 21 |
}
|