Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
<?php class AudioItem extends DataObject { static $db = array( 'Title' => 'Varchar(50)', 'Description' => 'Text' ); static $has_one = array( 'AudioPage' => 'AudioPage', 'Thumbnail' => 'Image', 'AudioFile' => 'File' ); function getCMSFields_forPopup() { return new FieldSet( new TextField('Title'), new TextAreaField('Description'), new ImageField('Thumbnail'), new FileIFrameField('AudioFile') ); } } ?>
This paste will be private.
From the Design Piracy series on my blog: