create.php 8.16 KB
<?php
use Tz\WordPress\Tools\Notifications\Settings;
use Tz\WordPress\Tools\Notifications;
use Tz\WordPress\Tools;
?>

<link type="text/css" href="<?php echo Tools\url('assets/css/smoothness/jquery-ui-1.8.4.custom.css', __FILE__)?>" rel="stylesheet" />	
<script type="text/javascript" src="<?php echo Tools\url('assets/scripts/jquery-1.4.2.min.js', __FILE__)?>"></script>
<script type="text/javascript" src="<?php echo Tools\url('assets/scripts/jquery-ui-1.8.4.custom.min.js', __FILE__)?>"></script>
<script type="text/javascript" src="<?php echo Tools\url('assets/scripts/datetimepicker.js', __FILE__)?>"></script>
<link rel="stylesheet" href="<?php echo Tools\url('assets/css/notifications.css', __FILE__)?>" />

<div id="" class="wrap">

    <h2>Notifications - Create New</h2>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis convallis nisi eu dignissim. Quisque malesuada augue in mi blandit at blandit tortor sollicitudin. Cras at justo mi, vel mollis est. Donec orci erat, blandit varius vehicula vitae, volutpat at lorem. Etiam tincidunt bibendum ante, non tincidunt purus faucibus sed. Suspendisse eget facilisis tellus. Nulla imperdiet leo placerat diam sollicitudin nec mattis neque mattis. Cras id lacus tellus. Phasellus volutpat vehicula porttitor. Praesent erat felis, pharetra mollis egestas sit amet, rhoncus eget nisl. Morbi interdum sapien vitae nibh pharetra scelerisque. Mauris porta accumsan velit ac aliquam. Sed sit amet dictum felis. Fusce tempus vulputate nulla, quis tincidunt velit mattis eu.</p>
    
    <?php if (isset($flash) && $flash !=""): ?>
    <div class="post-success">
        <?php echo $flash; ?>
    </div>
    <?php endif; ?>
    
    <form enctype="multipart/form-data" method="post" action="/wp-admin/admin.php?page=notifications-create-new">
        
        <input type="hidden" name="_POSTED_" value="yes" />
        
        <table cellspacing="0" class="widefat post fixed" style="margin-top:15px;">
            <thead>
                <tr>
                    <th width="150">Notification Details</th>
                    <th>&nbsp;</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td width="150">Notification Type</td>
                    <td>
                        <select name="type" id="notif_type" class="wide-input-field" onchange="updateNotificationType();">
                            <option value="scheduled">Scheduled Notification</option>
                            <?php if (current_user_can(Settings\MANAGE_SYSTEM_NOTIFICATIONS)): ?>
                            <option value="triggered">System Triggered Notification</option>
                            <?php endif; ?>
                        </select>
                    </td>
                </tr>
                <tr>
                    <td width="150">Notification Description</td>
                    <td><input type="text" name="title" class="wide-input-field" /></td>
                </tr>
                <tr>
                    <td>Sent To:</td>
                    <td>
                    <select name="sendto" class="wide-input-field">
                        <option value="user">Current User</option>
                        <option value="allusers">All Users</option>
                        <optgroup label="Groups:">
                            <option value="group1">Administrators</option>
                            <option value="group2">Group 2</option>
                            <option value="group3">Group 3</option>
                        </optgroup>
                    </select>
                    </td>
                </tr>
                
                <tr class="scheduled-extended">
                    <td>Execute Date / Time</td>
                    <td><input type="text" name="execute_date" id="execute_date" class="wide-input-field date-pick" readonly="readonly" /></td>
                </tr>
                
                <tr class="trigger-extended">
                    <td>Trigger</td>
                    <td><input type="text" name="trigger" id="trigger" class="wide-input-field" /></td>
                </tr>
                
            </tbody>
        </table>
        
        <table cellspacing="0" class="widefat post fixed expandable" style="margin-top:15px;">
            <thead>
                <tr>
                    <th width="150" class="toggle"><h6>Email</h6></th>
                    <th class="action-bar">&nbsp;</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td width="150">Subject Line</td>
                    <td><input type="text" name="subject" class="wide-input-field" style="width:100%;" /></td>
                </tr>
                <tr>
                    <td>Text Version</td>
                    <td><textarea name="text" class="wide-input-field" rows="10" style="width:100%;" ></textarea></td>
                </tr>
                <tr>
                    <td>HTML Version (optional)</td>
                    <td><textarea name="html" id="htmlversion" class="wide-input-field" rows="10" style="width:100%;"></textarea></td>
                </tr>
                <tr>
                    <td width="150">Attachments</td>
                    <td><input type="file" name="attachment[]" /></td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                    <td><input type="file" name="attachment[]" /></td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                    <td><input type="file" name="attachment[]" /></td>
                </tr>
            </tbody>
        </table>
        
        <table cellspacing="0" class="widefat post fixed expandable" style="margin-top:15px;">
            <thead>
                <tr>
                    <th width="150" class="toggle"><h6>System Message</h6></th>
                    <th class="action-bar">&nbsp;</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>Message (Text/HTML)</td>
                    <td><textarea name="system" class="wide-input-field" rows="4" style="width:100%;" ></textarea></td>
                </tr>
            </tbody>
        </table>
        
        <table cellspacing="0" class="widefat post fixed expandable" style="margin-top:15px;">
            <thead>
                <tr>
                    <th width="150" class="toggle"><h6>SMS</h6></th>
                    <th class="action-bar">&nbsp;</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>Text Only!</td>
                    <td><textarea name="sms" class="wide-input-field" rows="4" style="width:100%;" ></textarea></td>
                </tr>
            </tbody>
        </table>
        
        
        <p>
        <input type="submit" value="  Save  " /><input type="button" value="  Cancel  " onclick="document.location.href='/wp-admin/admin.php?page=notifications';" />
        </p>
    
    </form>
    
</div>

<script type="text/javascript">


jQuery(document).ready(function() {

    $('#execute_date').datetimepicker({
        stepMinute: 15
      , dateFormat: 'yy-mm-dd'
      , timeFormat: 'hh:mm:ss'
    });
    
    updateNotificationType();
     
    jQuery('table.expandable tbody').hide();
    jQuery('table.expandable thead th').click(function() {
        var $table = jQuery(this).parent().parent().parent();
        if ( jQuery('tbody',$table).is(":visible") ) {
            jQuery('thead',$table).removeClass("open");
            jQuery('tbody',$table).fadeOut();
        } else {
            jQuery('thead',$table).addClass("open");
            jQuery('tbody',$table).fadeIn();
        }
    });
    
});

function updateNotificationType() {
    var type = jQuery('#notif_type').val();
    
    if (type=="triggered") {
        jQuery('.scheduled-extended').hide();
        jQuery('.trigger-extended').show();
    } else {
        jQuery('.scheduled-extended').show();
        jQuery('.trigger-extended').hide();
    }
    
}



</script>