Ignore:
Timestamp:
2011/04/15 22:58:24 (15 years ago)
Author:
nanasess
bzr:base-revision:
svn-v4:1e3b908f-19a9-db11-a64c-001125224ba8:branches/version-2_11-dev:20846
bzr:committer:
Kentaro Ohkouchi <[email protected]>
bzr:file-ids:

data/Smarty/templates/admin/design/main_edit.tpl 15732@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2FSmarty%2Ftemplates%2Fdefault%2Fadmin%2Fdesign%2Fmain_edit.tpl
data/class/helper/SC_Helper_FileManager.php 16253@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fhelper%2FSC_Helper_FileManager.php
data/class/helper/SC_Helper_PageLayout.php 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fhelper%2FSC_Helper_PageLayout.php
data/class/pages/admin/design/LC_Page_Admin_Design_MainEdit.php 15682@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fadmin%2Fdesign%2FLC_Page_Admin_Design_MainEdit.php
data/class/util/SC_Utils.php 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Futil%2FSC_Utils.php
test/class/util/SC_Utils_Test.php sc_utils_test.php-20100802013957-750m2yralg9cowkd-1
bzr:mapping-version:
v4
bzr:merge:

[email protected]
bzr:repository-uuid:
1e3b908f-19a9-db11-a64c-001125224ba8
bzr:revision-id:
[email protected]
bzr:revno:
3558
bzr:revprop:branch-nick:
branches/version-2_11-dev
bzr:root:
branches/version-2_11-dev
bzr:text-revisions:

data/Smarty/templates/admin/design/main_edit.tpl [email protected]
data/class/helper/SC_Helper_FileManager.php [email protected]
data/class/helper/SC_Helper_PageLayout.php [email protected]
test/class/util/SC_Utils_Test.php [email protected]
bzr:timestamp:
2011-04-15 22:58:20.900000095 +0900
bzr:user-agent:
bzr2.2.1+bzr-svn1.0.4
svn:original-date:
2011-04-15T13:58:20.900000Z
Message:

#972 (リファクタリング開発:[管理画面]デザイン管理)

  • ページ詳細設定
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/class/util/SC_Utils.php

    r20845 r20847  
    20492049                     * 自クラスへ再帰する. 
    20502050                     */ 
    2051                     if (!SC_Utils_Ex::isBlank($in, $greedy)) { 
     2051                    if (!SC_Utils::isBlank($in, $greedy)) { 
    20522052                        return false; 
    20532053                    } 
     
    22162216        } 
    22172217    } 
     2218 
     2219    /** 
     2220     * ディレクトリを再帰的に作成する. 
     2221     * 
     2222     * mkdir 関数の $recursive パラメータを PHP4 でサポートする. 
     2223     * 
     2224     * @param string $pathname ディレクトリのパス 
     2225     * @param integer $mode 作成するディレクトリのパーミッション 
     2226     * @return boolean 作成に成功した場合 true; 失敗した場合 false 
     2227     * @see http://jp.php.net/mkdir 
     2228     */ 
     2229    function recursiveMkdir($pathname, $mode) { 
     2230        /* 
     2231         * SC_Utils_Ex への再帰は無限ループやメモリリークの懸念 
     2232         * 自クラスへ再帰する. 
     2233         */ 
     2234        is_dir(dirname($pathname)) || SC_Utils::recursiveMkdir(dirname($pathname), $mode); 
     2235        return is_dir($pathname) || @mkdir($pathname, $mode); 
     2236    } 
    22182237} 
    22192238?> 
Note: See TracChangeset for help on using the changeset viewer.