Skip to content

Commit

Permalink
Merge branch '3.0.0'
Browse files Browse the repository at this point in the history
Conflicts:
	README.md
	system/modules/multicolumnwizard/MultiColumnWizard.php
  • Loading branch information
aschempp committed Apr 30, 2012
2 parents 6cab8bb + d779d02 commit a96c463
Show file tree
Hide file tree
Showing 12 changed files with 1,246 additions and 430 deletions.
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# OS
.DS_Store
Thumbs.db

system/modules/multicolumnwizard/html/.DS_Store
# IDEs
.buildpath
.project
.settings/
.build/
.idea/
nbproject/
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
Usage with columnFields
=======================

```php
<?php
<pre><code>
<?php
$GLOBALS['TL_DCA']['tl_theme']['fields']['templateSelection'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_theme']['templateSelection'],
Expand Down Expand Up @@ -38,14 +39,17 @@ $GLOBALS['TL_DCA']['tl_theme']['fields']['templateSelection'] = array
)
)
);

?>
```
</code></pre>


Usage with callback
===================

```php
<?php
<pre><code>
<?php
$GLOBALS['TL_DCA']['tl_table']['fields']['anything'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_table']['anything'],
Expand All @@ -57,8 +61,10 @@ $GLOBALS['TL_DCA']['tl_table']['fields']['anything'] = array
'columnsCallback' => array('Class', 'Method')
)
);

?>
```
</code></pre>


More information
================
Expand Down
2 changes: 1 addition & 1 deletion system/modules/multicolumnwizard/LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
* Author Andreas Schempp <[email protected]>
* Link http://www.iserv.ch/
* License GNU/LGPL
*/
*/
Loading

0 comments on commit a96c463

Please sign in to comment.