Ignore:
Timestamp:
Dec 18, 2005 12:16:03 AM (19 years ago)
Author:
scdev
Message:

detabbed all files ;P

Location:
trunk/bin/module_maker/skel
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/bin/module_maker/skel/adm_list.ihtml

    r41 r42  
    77    <span class="nowrap commandtext"><a href="<?php echo App::oHREF($_SERVER['PHP_SELF'] . '?op=add'); ?>"><?php echo _("Add %ITEM_TITLE%"); ?></a></span>
    88    <br />
    9    
     9
    1010    <input type="text" class="small" size="20" name="search_query" value="<?php echo getFormData('search_query'); ?>" title="<?php echo oTxt(_("Fields searched: <##> %SEARCH_FIELDS%.")); ?>" />
    1111    <select name="filter_<##>">
  • trunk/bin/module_maker/skel/admin.php

    r41 r42  
    2626 * CONFIG
    2727 *****************************************************************************/
    28  
     28
    2929// Titles and navigation header.
    3030$nav->addPage(_("%TITLE%"), $_SERVER['PHP_SELF']);
    31    
     31
    3232// The object to validate form input.
    3333$fv = new FormValidator();
     
    215215    // Get the information for the form.
    216216    $qid = DB::query("
    217         SELECT * 
     217        SELECT *
    218218        FROM %DB_TBL%
    219219        WHERE %PRIMARY_KEY% = '" . addslashes($id) . "'
     
    227227    // Lock this record.
    228228    $lock->set('%DB_TBL%', '%PRIMARY_KEY%', $id, $frm['<##>']);
    229    
     229
    230230    // Set misc values for the form.
    231231    $frm = array_merge(array(
     
    246246{
    247247    global $lock;
    248    
     248
    249249    $lock->select('%DB_TBL%', '%PRIMARY_KEY%', $id);
    250250    if ($lock->isLocked() && !$lock->isMine()) {
     
    254254    // Break the cache because we are changing the list data.
    255255    SessionCache::breakCache($_SERVER['PHP_SELF']);
    256    
     256
    257257    // Get the information for this object.
    258258    $qid = DB::query("
    259         SELECT <##> 
     259        SELECT <##>
    260260        FROM %DB_TBL%
    261261        WHERE %PRIMARY_KEY% = '" . addslashes($id) . "'
     
    266266        App::dieBoomerangURL();
    267267    }
    268    
     268
    269269    // Delete the record.
    270270    DB::query("DELETE FROM %DB_TBL% WHERE %PRIMARY_KEY% = '" . addslashes($id) . "'");
    271    
     271
    272272    App::raiseMsg(sprintf(_("The %ITEM_TITLE% <strong>%s</strong> has been deleted."), $name), MSG_SUCCESS, __FILE__, __LINE__);
    273273
     
    279279{
    280280    global $auth;
    281    
     281
    282282    // Break the cache because we are changing the list data.
    283283    SessionCache::breakCache($_SERVER['PHP_SELF']);
    284    
     284
    285285%INSERT%
    286286    $last_insert_id = mysql_insert_id(DB::getDBH());
     
    289289    $version = RecordVersion::getInstance($GLOBALS['auth']);
    290290    $version->create('%DB_TBL%', '%PRIMARY_KEY%', $last_insert_id, $frm['<##>']);
    291    
     291
    292292    App::raiseMsg(sprintf(_("The %ITEM_TITLE% <strong>%s</strong> has been added."), $frm['<##>']), MSG_SUCCESS, __FILE__, __LINE__);
    293    
     293
    294294    return $last_insert_id;
    295295}
     
    298298{
    299299    global $auth, $lock;
    300    
     300
    301301    $lock->select('%DB_TBL%', '%PRIMARY_KEY%', $frm['%PRIMARY_KEY%']);
    302302    if ($lock->isLocked() && !$lock->isMine()) {
     
    308308
    309309%UPDATE%
    310    
     310
    311311    // Create version.
    312312    $version = RecordVersion::getInstance($GLOBALS['auth']);
     
    323323    global $page;
    324324    global $so;
    325    
     325
    326326    $where_clause = '';
    327    
     327
    328328    // Build search query if available.
    329329    if (getFormData('search_query', false)) {
     
    333333        }
    334334    }
    335    
     335
    336336    if (getFormData('filter_<##>', false)) {
    337337        // Limit by filter.
    338338        $where_clause .= (empty($where_clause) ? 'WHERE' : 'AND') . " <##> = '" . addslashes(getFormData('filter_<##>')) . "'";
    339339    }
    340    
     340
    341341    // Count the total number of records so we can do something about the page numbers.
    342342    $qid = DB::query("
    343         SELECT COUNT(*) 
    344         FROM %DB_TBL% 
     343        SELECT COUNT(*)
     344        FROM %DB_TBL%
    345345        $where_clause
    346346    ");
    347347    list($num_results) = mysql_fetch_row($qid);
    348    
     348
    349349    // Set page numbers now we know (needed for next step).
    350350    $page->setTotalItems($num_results);
    351351    $page->calculate();
    352    
     352
    353353    // Final SQL, with sort and page limiters.
    354354    $sql = "
    355         SELECT 
    356             %DB_TBL%.*, 
     355        SELECT
     356            %DB_TBL%.*,
    357357            a1.username AS added_admin_username,
    358358            a2.username AS modified_admin_username
     
    364364        " . $page->getLimitSQL() . "
    365365    ";
    366    
     366
    367367    // A unique key for this query, with the total_items in case db records
    368368    // were added since the last cache. This identifies a unique set of
     
    375375        Prefs::setValue('cache_hash', $cache_hash, $_SERVER['PHP_SELF']);
    376376    }
    377    
     377
    378378    if (SessionCache::isCached($_SERVER['PHP_SELF'])) {
    379379        // Get the cached results.
     
    386386            $list[] = $row;
    387387        }
    388            
     388
    389389        if (isset($list) && !empty($list)) {
    390390            // Cache the results.
     
    397397
    398398function updateRank($ranks)
    399 {   
     399{
    400400    if (!is_array($ranks)) {
    401401        App::logMsg('Saving rank failed, data posted is not an array: ' . $ranks, LOG_ERR, __FILE__, __LINE__);
     
    405405    // Break the cache because we are changing the list data.
    406406    SessionCache::breakCache($_SERVER['PHP_SELF']);
    407    
     407
    408408    // Count the ranks with invalid numbers
    409409    $unspecified_counter = 0;
    410    
     410
    411411    // Go through the array of new ranks.
    412412    foreach ($ranks as $id => $new_rank) {
     
    414414            // Unspecified entries receive a sort order of 10000.
    415415            $new_rank = 10000;
    416             $unspecified_counter++; 
     416            $unspecified_counter++;
    417417        }
    418418        DB::query("
     
    422422        ");
    423423    }
    424    
     424
    425425    App::raiseMsg(_("Records have been reordered with the new rank."), MSG_SUCCESS, __FILE__, __LINE__);
    426426    if ($unspecified_counter > 0) {
  • trunk/bin/module_maker/skel/public.php

    r41 r42  
    11<?php
    22/**
    3  * %PUBLIC_SCRIPT% 
     3 * %PUBLIC_SCRIPT%
    44 * Code by Strangecode :: www.strangecode.com :: This document contains copyrighted information
    55 *
     
    1818// Titles and navigation header.
    1919$nav->addPage(_("%TITLE%"), $_SERVER['PHP_SELF']);
    20 $nav->setFeature(array('title'=>true)); 
     20$nav->setFeature(array('title'=>true));
    2121
    2222// Instantiate page numbers. Total items are set and calculation is done in the getRecordList function.
     
    3232
    3333if (getFormData('%PRIMARY_KEY%', false)) {
    34    
     34
    3535    // Get requested record.
    3636    $qid = DB::query("
     
    5252        WHERE %PRIMARY_KEY% = '" . addslashes(getFormData('%PRIMARY_KEY%')) . "'
    5353    ");
    54        
     54
    5555    // Set title and main template.
    5656    $nav->addPage($item['<##>']);
     
    5858
    5959} else {
    60    
     60
    6161    // Get the DEFAULT list.
    6262    $%NAME_SINGULAR%_list = array();
    6363    $qid = DB::query("
    64         SELECT * 
    65         FROM %DB_TBL% 
    66         WHERE publish = 'true' 
     64        SELECT *
     65        FROM %DB_TBL%
     66        WHERE publish = 'true'
    6767        " . $so->getSortOrderSQL() . "
    6868        LIMIT 100
     
    7171        $%NAME_SINGULAR%_list[] = $row;
    7272    }
    73    
     73
    7474    // Set page numbers for default list.
    7575    $page->setTotalItems(sizeof($%NAME_SINGULAR%_list));
    7676    $page->calculate();
    77    
     77
    7878
    7979    // Get the FEATURED list.
    8080    $featured_list = array();
    8181    $qid = DB::query("
    82         SELECT * 
    83         FROM %DB_TBL% 
     82        SELECT *
     83        FROM %DB_TBL%
    8484        WHERE publish = 'true'
    8585        AND featured = 'true'
     
    8989        $featured_list[] = $row;
    9090    }
    91    
     91
    9292    // Get the POPULAR list.
    9393    $popular_list = array();
    9494    $qid = DB::query("
    95         SELECT * 
    96         FROM %DB_TBL% 
    97         WHERE publish = 'true' 
     95        SELECT *
     96        FROM %DB_TBL%
     97        WHERE publish = 'true'
    9898        ORDER BY hit_count DESC LIMIT 10
    9999    ");
     
    101101        $popular_list[] = $row;
    102102    }
    103    
     103
    104104    // Get the RECENT list.
    105105    $recent_list = array();
    106106    $qid = DB::query("
    107         SELECT * 
    108         FROM %DB_TBL% 
    109         WHERE publish = 'true' 
     107        SELECT *
     108        FROM %DB_TBL%
     109        WHERE publish = 'true'
    110110        ORDER BY added_datetime DESC LIMIT 10
    111111    ");
     
    113113        $recent_list[] = $row;
    114114    }
    115    
     115
    116116    // Set main template.
    117117    $main_template = '%PUBLIC_LIST_TEMPLATE%';
    118 }   
     118}
    119119
    120120// We have the data, and no errors, so here come the templates.
  • trunk/bin/module_maker/skel/public_list.ihtml

    r41 r42  
    1111        <p>
    1212        <em><?php echo date(App::getParam('date_format'), strtotime($%NAME_SINGULAR%_list[$i]['<##>'])); ?></em> &mdash; <?php echo nl2br(fancyTxt(oTxt($%NAME_SINGULAR%_list[$i]['summary'], true))); ?>
    13            
     13
    1414        <?php if (strlen(trim($%NAME_SINGULAR%_list[$i]['content'])) > 0) { // Link only if content is available. ?>
    1515            <br /><a href="<?php echo App::oHREF('/%PUBLIC_SCRIPT%?%PRIMARY_KEY%=' . $%NAME_SINGULAR%_list[$i]['%PRIMARY_KEY%']); ?>"><?php echo _("Read more"); ?></a>
    1616        <?php } ?>
    1717        </p>
    18         <?php   
     18        <?php
    1919    }
    2020    if ($page->total_pages > 1) {
     
    3030    ?>
    3131    <h2><?php echo _("Featured %NAME_PLURAL%"); ?></h2>
    32     <?php 
     32    <?php
    3333    foreach ($featured_list as $item) {
    34         ?><h4><a href="<?php echo App::oHREF('/%PUBLIC_SCRIPT%?%PRIMARY_KEY%=' . $item['%PRIMARY_KEY%']); ?>"><?php echo fancyTxt(oTxt($item['title'])); ?></a></h4><?php   
     34        ?><h4><a href="<?php echo App::oHREF('/%PUBLIC_SCRIPT%?%PRIMARY_KEY%=' . $item['%PRIMARY_KEY%']); ?>"><?php echo fancyTxt(oTxt($item['title'])); ?></a></h4><?php
    3535    }
    3636}
     
    4242    ?>
    4343    <h2><?php echo _("Popular %NAME_PLURAL%"); ?></h2>
    44     <?php 
     44    <?php
    4545    foreach ($popular_list as $item) {
    46         ?><h4><a href="<?php echo App::oHREF('/%PUBLIC_SCRIPT%?%PRIMARY_KEY%=' . $item['%PRIMARY_KEY%']); ?>"><?php echo fancyTxt(oTxt($item['title'])); ?></a> </h4><?php   
     46        ?><h4><a href="<?php echo App::oHREF('/%PUBLIC_SCRIPT%?%PRIMARY_KEY%=' . $item['%PRIMARY_KEY%']); ?>"><?php echo fancyTxt(oTxt($item['title'])); ?></a> </h4><?php
    4747    }
    4848}
     
    5454    ?>
    5555    <h2><?php echo _("Recent %NAME_PLURAL%"); ?></h2>
    56     <?php 
     56    <?php
    5757    foreach ($recent_list as $item) {
    58         ?><h4><a href="<?php echo App::oHREF('/%PUBLIC_SCRIPT%?%PRIMARY_KEY%=' . $item['%PRIMARY_KEY%']); ?>"><?php echo fancyTxt(oTxt($item['title'])); ?></a> </h4><?php   
     58        ?><h4><a href="<?php echo App::oHREF('/%PUBLIC_SCRIPT%?%PRIMARY_KEY%=' . $item['%PRIMARY_KEY%']); ?>"><?php echo fancyTxt(oTxt($item['title'])); ?></a> </h4><?php
    5959    }
    6060}
Note: See TracChangeset for help on using the changeset viewer.