/[drupal]/contributions/modules/block_edit/block_edit.module
ViewVC logotype

Contents of /contributions/modules/block_edit/block_edit.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Wed Oct 22 04:07:31 2008 UTC (13 months ago) by inadarei
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-2, DRUPAL-5--1-1, DRUPAL-5--1-0, DRUPAL-5--1-2, HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1
File MIME type: text/x-php
initial
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 }

  ViewVC Help
Powered by ViewVC 1.1.2