This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class My_Auth_Adapter_Doctrine2 implements Zend_Auth_Adapter_Interface | |
{ | |
/** | |
* Doctrine Entity Manager | |
* | |
* @var \Doctrine\ORM\EntityManager | |
*/ | |
protected $_em = null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Gitmike テーマ用のカスタマイズ版。 | |
// public/themes/gitmike/stylesheets/application.css 中の定義も以下のように変更する必要あり。 | |
// #sidebar { width: 260px !important; ... } | |
// ↓ | |
// #sidebar { width: 260px; ... } | |
$(function() { | |
$('#content') | |
.css({ | |
'width': 'auto', |