当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Db_Table_Abstract::init方法代码示例

本文整理汇总了PHP中Zend_Db_Table_Abstract::init方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Db_Table_Abstract::init方法的具体用法?PHP Zend_Db_Table_Abstract::init怎么用?PHP Zend_Db_Table_Abstract::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_Db_Table_Abstract的用法示例。


在下文中一共展示了Zend_Db_Table_Abstract::init方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: init

 function init()
 {
     parent::init();
     // NB! если свойство должно быть не в data, то прописывать его индивидуально!
     $this->_data = array('ItemCountPerPage' => 10, 'isPaginator' => true, 'isReturnPaginator' => false, 'generalWhere' => '', 'conditionWhere' => false, 'isStoredRows' => false);
     if ($this->_alias === null) {
         $this->imgs['folder'] = $this->_name;
     } else {
         $this->imgs['folder'] = $this->_alias;
     }
     #$conf = Zend_Registry::get('conf');
     #d($conf->logger->sql);
 }
开发者ID:BGCX262,项目名称:zx-zf-hg-to-git,代码行数:13,代码来源:Table.php

示例2: init

 public function init()
 {
     parent::init();
 }
开发者ID:redhattaccoss,项目名称:Leadschat,代码行数:4,代码来源:AppModel.php

示例3: init

 public function init()
 {
     parent::init();
     if (isset($this->_multilang_field) || isset($this->_multilang_type)) {
         $this->_current_lang = $reg = Zend_Registry::isRegistered('Zkernel_Multilang') ? Zend_Registry::get('Zkernel_Multilang') : '';
         if ($reg) {
             $changed = false;
             $cols = $this->info('metadata');
             switch ($this->_multilang_type) {
                 case 1:
                     if (!array_key_exists('lang', $cols)) {
                         $changed = true;
                         $this->getAdapter()->query('ALTER TABLE `' . $this->_name . '` ADD `lang` int(11)');
                         $this->getAdapter()->query('ALTER TABLE `' . $this->_name . '` ADD INDEX `i_lang` (`lang`)');
                     }
                     break;
                 default:
                     $m = new Default_Model_Lang();
                     $ids = implode('|', $reg->_ids);
                     $ml = implode('|', $this->_multilang_field);
                     foreach ($this->_multilang_field as $k => $el) {
                         if (!array_key_exists('ml_' . $el . '_' . $reg->id, $cols)) {
                             $changed = true;
                             $this->getAdapter()->query('ALTER TABLE `' . $this->_name . '` ADD `ml_' . $el . '_' . $reg->id . '` ' . $cols[$el]['DATA_TYPE'] . ($cols[$el]['LENGTH'] ? '(' . $cols[$el]['LENGTH'] . ')' : '') . ($cols[$el]['DEFAULT'] ? ' DEFAULT ' . $cols[$el]['DEFAULT'] : ''));
                         }
                     }
                     /*foreach ($cols as $k => $el) {
                     			if (preg_match('/^ml\_'.$el.'\_(\d+)$/i', $k) && !preg_match('/^ml\_('.implode('|', $this->_multilang_field).')\_('.implode('|', $ids).')+$/i')) {
                     				$changed = true;
                     				$this->getAdapter()->query('ALTER TABLE `'.$this->_name.'` DROP `'.$k.'`');
                     			}
                     		}*/
                     break;
             }
             if ($changed) {
                 $cache = $this->getMetadataCache();
                 if ($cache) {
                     $cache->clean();
                 }
             }
         }
     }
 }
开发者ID:s-kalaus,项目名称:zkernel,代码行数:43,代码来源:Table.php

示例4: init

 public function init()
 {
     $this->_iniConfig = new Zend_Config_Ini(APPLICATION_PATH . '/configs/application.ini', APPLICATION_ENV);
     parent::init();
 }
开发者ID:omusico,项目名称:logica,代码行数:5,代码来源:LoginAttempt.php

示例5: init

 public function init()
 {
     parent::init();
     $this->logger = Zend_Registry::get('logger')->ensureStream('system');
 }
开发者ID:qshurick,项目名称:pro_core,代码行数:5,代码来源:Table.php

示例6: init

 public function init()
 {
     return parent::init();
 }
开发者ID:nayanseth,项目名称:meetups,代码行数:4,代码来源:Table.php


注:本文中的Zend_Db_Table_Abstract::init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。