Changeset 19427


Ignore:
Timestamp:
2010/11/07 02:54:06 (12 years ago)
Author:
miningbrownie
Message:

auto commit by watch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_5-E/data/class/pages/admin/system/LC_Page_Admin_System_Plugin.php

    r19426 r19427  
    6060        $objForm->addParam('mode', 'mode', INT_LEN, '', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK')); 
    6161        $objForm->addParam('plugin_name', 'plugin_name', INT_LEN, '', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK')); 
    62          
     62 
    6363        $objForm->setParam($_POST); 
    6464        $this->objForm = $objForm; 
     
    8686                      'path' => realpath(DATA_DIR.'/plugin/'.$objForm->getValue('plugin_name')."/", 
    8787                    'enable' => '1', 
    88                      
    89                        
    90                      
     88                    'del' 
     89 
     90 
    9191                    ); 
    9292                    $objQuery->insert("dtb_plugin", $data); 
    9393                }else{ 
    9494                    //再インストール 
    95                      
     95 
    9696                } 
    9797                break; 
     
    109109                $this->plugins = array_merge($plugins, 
    110110                $this->getPluginOnFilesystem($plugins)); 
    111                  
     111 
    112112                var_dump($this->plugins); 
    113113                break; 
     
    119119        $objView->display(MAIN_FRAME); 
    120120    } 
    121      
     121 
    122122    /* 
    123123     CREATE TABLE dtb_plugin ( 
     
    141141                if(!preg_match('/^\\./', $file) && $file !='..' && filetype($dir.$file) == 'dir'){ 
    142142                    $arrPlugins[] = array('plugin_name'=>$file,'class_name'=>$file); 
    143                      
     143 
    144144                } 
    145145            } 
    146146        } 
    147 //        var_dump($arrPlugins); 
    148           return $arrPlugins;  
     147        //        var_dump($arrPlugins); 
     148        return $arrPlugins; 
    149149    } 
    150150 
Note: See TracChangeset for help on using the changeset viewer.