2012-05-29 82 views
3

我看到了一些不同的解決方案,以實現使用CakePHPCakePHP的和Twitter引導

我的問題Twitter的引導是 - 什麼他們的最佳解決方案???

我希望用我的應用程序的CakePHP和Twitter的引導的最新版本。

解決方案,我需要的是烤的應用程序和觀點必須與Twitter的引導已經可以運行後(對於Twitter的引導使更多的幫手是不是一個很好的解決方案)。我發現是:

任何人都已經試圖找到最好的解決方案,告訴我他/她找到了什麼?

Thanx。

+1

您是否考慮過使用烘焙模板? – jeremyharris

回答

0

此分享你的模板是我用在我的Twitter的引導意見兼容創建表單:

echo $this->Form->create('User', array(
    'inputDefaults' => array(
      'div' => 'control-group', 
      'label' => array('class' => 'control-label'), 
      'between' => '<div class="controls">', 
      'after' => '</div>', 
      'class' => '', 
      'error' => array('attributes' => array('wrap' => 'div', 'class' => 'alert alert-error'))), 
    'class' => 'form-horizontal')); 
echo $this->Form->input('login'); 
echo $this->Form->end(); 

這是最終輸出:

<form action="path/to/action" class="form-horizontal" id="UserForm" method="post" accept-charset="utf-8"> 
    <div style="display:none;"> 
     <input type="hidden" name="_method" value="POST"> 
    </div> 
    <div class="control-group required"> 
    <label for="UserLogin" class="control-label">Login</label> 
     <div class="controls"> 
      <input name="data[User][login]" class="" maxlength="255" type="text" id="UserLogin"> 
     </div> 
    </div> 
</form> 
0

,我建議你看看CakeStraphttps://github.com/Rhym/cakeStrap

這是很容易的步驟如下:

1)下載的.zip文件

2)文件已放置在您的cakePHP應用程序中的文件夾中,只需按照兔子洞並將文件夾/文件放在正確的位置: - 「模板」文件夾進入ap P /控制檯 - 在「主題」文件夾進去的應用程序/查看

3)爲使你的主題添加公共$主題=「Cakestrap」;到你的「AppController」類。

4)如果你想生成與麪包店的應用程序,然後確保你在運行腳本之前已經啓用了您的主題。

乾杯!