Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 2006
    Posts
    32
    Plugin Contributions
    0

    Main Page Wrapper?

    I'm trying to work in a virtual postcard program into my Zencart, and I'm so close!

    The store is here:

    www.aprilperchnet.com

    I have the link okay, just click on MORE INFORMATION/page_2
    This page would list all the cards. Now when you click it, it goes to the
    right page (http://www.aprilperchnet.com/sendcard.php), but I want it to have the main page wrapper. If I can get it for this page, so many of lifes problems will be solved (well, I can get closer to having ecards on my site).

    Help from Zencart Gurus possible?
    Thanks ahead of time, my friends....

    -GB47

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Main Page Wrapper?

    copy the viewsource from the page right before you transfer to the sencard page to an editor and save it.

    Go to the send card page and copy it's view source code to an editor and save

    Now sit back and look at both of these files. The sendcard page has no calls to any of the the items that assemble the page and therefore they are not used in the display of this page.

    I am not enough of a coder to suggest what and where the items that you need to include in the send card code are. But I am sure that some one here can assist,

    You might post the sendcard code with a bit more descritpion to save another some time.
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Aug 2006
    Posts
    32
    Plugin Contributions
    0

    Default Re: Main Page Wrapper?

    I thought about that. My only problem with going that route is I'd like to keep it dynamic. I'd like to keep all the other good things this would offer, meaning if the user is logged in, I could still show that they are logged in.

    My coding is just beneath pulling it off...Thanks for the input!

    :)

  4. #4
    Join Date
    Aug 2006
    Posts
    32
    Plugin Contributions
    0

    Default Re: Main Page Wrapper?

    This is the complete code for http://www.aprilperchnet.com/sendcard.php :

    Code:
    <?php
    
    define('SENDCARD_FILE_PATH', dirname(__FILE__) . '/');
    
    // Now work-arounds for stupidity in PHP
    set_magic_quotes_runtime(0);
    
    #error_reporting(E_ALL); // used for debugging
    error_reporting(E_ALL & ~E_NOTICE);
    
    // We can't disable magic_quotes_gpc at runtime, but we can strip them from all input data
    if (get_magic_quotes_gpc() == 1) {
    	$_GET[$k] = array_map('stripslashes', $_GET);
    	$_POST[$k] = array_map('stripslashes', $_POST);
    	$_REQUEST[$k] = array_map('stripslashes', $_REQUEST);
    }
    
    // The code is written for global variables (it's old!) so initialise them
    extract((array)$_POST);
    extract((array)$_GET);
    
    // Include setup file
    $dbfile = "";
    require_once(SENDCARD_FILE_PATH . "sendcard_setup.php");
    define('SENDCARD_MODE', $sendcard_mode);
    
    switch(SENDCARD_MODE){
    	default:
    		define('FORM_ACTION', 'sendcard.php');
    		break;
    }
    
    // Set the default language file to be included
    if (!isset($sc_language)) {
        $sc_language = $sc_default_language;
    }
    
    setcookie('sc_language', $sc_language);
    
    require_once(SENDCARD_FILE_PATH . "include/".$dbfile);
    require_once(SENDCARD_FILE_PATH . "include/template.inc");
    require_once(SENDCARD_FILE_PATH . "include/lang/" . $sc_language . "/sendcard.lang.php");
    require_once(SENDCARD_FILE_PATH . "functions.php");
    require_once(SENDCARD_FILE_PATH . "sendcard_user_functions.php");
    
    setlocale(LC_ALL, $sc_lang['locale']);
    $date = strftime($sc_lang['date_format']);
    
    $from = isset($from) ? prevent_xss($from) : '';
    $to = isset($to) ? prevent_xss($to) : '';
    $image = isset($image) ? prevent_xss($image) : '';
    $caption = isset($caption) ? prevent_xss(stripslashes($caption)) : '';
    $bgcolor = isset($bgcolor) ? prevent_xss($bgcolor) : '';
    $to_email = isset($to_email) ? prevent_xss($to_email) : '';
    $from_email = isset($from_email) ? prevent_xss($from_email) : '';
    $fontface = isset($fontface) ? prevent_xss($fontface) : '';
    $fontcolor = isset($fontcolor) ? prevent_xss($fontcolor) : '';
    if ($sc_html_in_msg == 1) {
    	require_once(SENDCARD_FILE_PATH . "include/input_filter/class.inputfilter_clean.php");
    	// Work with the defaults for the time being
    	// array of allowed tags
    	$inputfilter_allowed_tags = array('br', 'p', 'div', 'strong', 'em', 'ul', 'ol', 'li', 'dl', 'dd', 'dt', 'a');
    	// array of allowed attributes
    	$inputfilter_allowed_attr = array('href', 'title');
    	$filter =& new InputFilter($inputfilter_allowed_tags, $inputfilter_allowed_attr);
    	$message = isset($message) ? $filter->process($message) : '';
    } else {
    	$message = isset($message) ? prevent_xss($message) : ''; // Canna use htmlentities here as reapplied on every page load
    }
    $music = isset($music) ? prevent_xss($music) : '';
    if (!isset($notify)) { $notify = 0; }
    if (!isset($id)) { $id = ""; }
    $applet_name = isset($applet_name) ? prevent_xss($applet_name) : '';
    // You may want to remove the prevent_xss() call from the following if your
    // $user1, $user2 and $user3 contain javascript
    $user1 = isset($user1) ? prevent_xss($user1) : '';
    $user2 = isset($user2) ? prevent_xss($user2) : '';
    $user3 = isset($user3) ? prevent_xss($user3) : '';
    
    $send_time = isset($send_time) ? $send_time : '';
    
    define('SENDCARD_SITE_URL', 'http://www.sendcard.org');
    
    // Get the template details
    if(!isset($form) || $form == ''){
    	$form = "form";
    }
    if(!isset($des) || $des == ''){
    	$des = "card";
    }
    if (!isset($template) || $template == '') {
        $template = 'message';
    }
    // If we have the printer friendly version requested:
    if(isset($print)) {
    	$des = "print";
    	$sc_lang['view_message'] = $sc_lang['print_view_message'];
    }
    
    /*** plugin top_file ***/
    
    
    $db = new DB_Sendcard;
    /*** plugin after_db_init ***/
    if ($separate_language_templates) {
        $tpl = new Sendcard_Template($tpl_path . '/' . $sc_language);
    } else {
        $tpl = new Sendcard_Template($tpl_path);
    }
    // Set the global files - we override this when viewing the card
    $tpl->set_file(array("form" => "$form.tpl", "message" => "$template.tpl", "card" => "$des.tpl", "thankyou" => "thankyou.tpl", "img_tags" => "image.tpl"));
    $tpl->set_var('SENDCARD_SITE_URL', SENDCARD_SITE_URL);
    
    /*** plugin after_db_tpl_init ***/
    
    foreach($sc_lang as $key => $val) {
        $tpl->set_var("LANG:$key", $val);
    }
    $tpl->set_var('FORM_ACTION', FORM_ACTION);
    
    // If it's preview time, validate the email addresses
     // Check that both email addresses validate   
     if ( isset($preview) ) {   
        if (!is_valid_email($to_email)) {   
        	unset($preview);   
            $invalid_to_email = 1;   
        }   
        if (!is_valid_email($from_email)){   
            unset($preview);   
            $invalid_from_email = 1;   
    	}   
    } 
    
    
    /*****************************************************************************/
    if ( isset($preview) ) {
    /*****************************************************************************/
    
    // Preview the card
    
    $message = stripslashes($message);
    
    /*** plugin preview_top ***/
    
    if (isset($notify) && '' == $notify) {
    	$notify = 0;
    }
    
    if( !isset($month) ) {
    	$month = "";
    }
    if( !isset($day) ) {
    	$day = "";
    }
    if( !isset($year) ) {
    	$year = "";
    }
    
    $send_time = advancetime($month, $day, $year);
    
    
    $send_button = "\n        <form method=\"post\" action=\"" . FORM_ACTION . "\">";
    $send_button .= buildHiddenInputs(array('image' => $image,
                                            'caption' => $caption,
                                            'bgcolor' => $bgcolor,
                                            'to' => $to,
                                            'to_email' => $to_email,
                                            'send' => 1,
                                            'from' => $from,
                                            'from_email' => $from_email,
                                            'fontface' => $fontface,
                                            'fontcolor' => $fontcolor,
                                            'message' => $message,
                                            'music' => $music,
                                            'notify' => $notify,
                                            'send_time' => $send_time,
                                            'template' => $template,
                                            'des' => $des,
                                            'img_width' => $img_width,
                                            'img_height' => $img_height,
                                            'applet_name' => $applet_name,
                                            'previewed' => 1,
                                            'user1' => $user1,
                                            'user2' => $user2,
                                            'user3' => $user3,
                                            'sc_language' => $sc_language
                                            ), '        ');
    
    $send_button .= "        <input type=\"submit\" name=\"send\" value=\"" . $sc_lang['send_button_label'] . "\">\n";
    
    /*** plugin preview_send_button ***/
    
    $send_button .= "        </form>\n";
    
    $message = makesafe($message);
    if (!$sc_html_in_msg) {
    	$message = htmlspecialchars($message, ENT_QUOTES);
    }
    $message = makeurl($message);
    
    $caption = stripslashes($caption);
    
    set_img_block($image);
    
    $tpl->set_var("IMG_PATH", $img_path);
    $tpl->set_var("IMAGE", $image);
    $tpl->set_var("CAPTION", $caption);
    $tpl->set_var("BGCOLOR", $bgcolor);
    $tpl->set_var("TO", $to[0]);
    $tpl->set_var("TO_EMAIL", $to_email[0]);
    $tpl->set_var("FROM", $from);
    $tpl->set_var("FROM_EMAIL", $from_email);
    $tpl->set_var("FONTFACE", $fontface);
    $tpl->set_var("FONTCOLOR", $fontcolor);
    $tpl->set_var("IMG_WIDTH", $img_width);
    $tpl->set_var("IMG_HEIGHT", $img_height);
    $tpl->set_var("MESSAGE", nl2br($message));
    $tpl->set_var("MUSIC", $music_path . $music);
    $tpl->set_var("APPLET_NAME", $applet_name);
    $tpl->set_var("USER1", $user1);
    $tpl->set_var("USER2", $user2);
    
    /*** plugin preview_bottom ***/
    
    if ($music == "") {
    	$tpl->del_block("message", "music_block");
    }
    $tpl->set_var("FOOTER", $send_button);
    
    $tpl->parse("CONTENT", array("message", "card"));
    $tpl->p("CONTENT", "card");
    
    /*****************************************************************************/
    }elseif ( isset($send) ) {
    /*****************************************************************************/
    
    /**
     *
     * Send the card
     *
     */
    
    if (!isset($previewed)) {
    	// This has been added so that if you don't go through the preview screen
    	// then it still works.
    	if (isset($notify) && '' == $notify) {
    		$notify = 0;
    	}
    	
    	if( !isset($month) ) {
    		$month = "";
    	}
    	if( !isset($day) ) {
    		$day = "";
    	}
    	if( !isset($year) ) {
    		$year = "";
    	}
        $send_time = advancetime($month, $day, $year);
    }
    
    $ip_address = isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR'];
    
    /*** plugin send_top ***/
    $ip_address_time_limit = gmmktime() - $block_sending_time;
    $db->query("SELECT count(*) as c FROM $tbl_name WHERE ip_address=".$db->quoteSmart($ip_address)." AND time_created > $ip_address_time_limit");
    while($db->next_record()){
    	$num_ip_address = $db->f('c');
    } // while
    if ($num_ip_address > $block_sending_number) {
        sendcard_show_message(stripslashes($sc_lang['sent_too_many_cards']));
        exit();
    }
    
    $emailsent = ($send_time > gmmktime()) ? 0 : 1;
    
    if(!get_magic_quotes_gpc()){
    	$loop_num = count($to);
        for($i=0;$i< $loop_num; $i++){
             $to[$i] = addslashes($to[$i]);
        }
        $from = addslashes($from);
    }
    
    $message = prevent_xss($message);
    
    if(!get_magic_quotes_gpc()){
         $message = addslashes($message);
         $caption = addslashes($caption);
         $user1 = addslashes($user1);
         $user2 = addslashes($user2);
    }
    
    // Seed the random number generator for use in function make_card_id.  This seed
    // is from the PHP manual page for mt_srand
    mt_srand(hexdec(substr(md5(microtime()), -8)) & 0x7fffffff);
    
    
    $loop_num =  count($to_email);
    if ($loop_num > $max_cards) {
        die($sc_lang['too_many_recipients']);
    }
    
    for ($i = 0; $i < $loop_num; $i++){
        $id = make_card_id();
        $card_data = array(
        				   'image' => $image,
        				   'caption' => $caption,
        				   'bgcolor' => $bgcolor,
        				   'towho' => $to[$i],
        				   'to_email' => $to_email[$i],
        				   'fromwho' => $from,
        				   'from_email' => $from_email,
        				   'fontcolor' => $fontcolor,
        				   'fontface' => $fontface,
        				   'message' => $message,
        				   'music' => $music,
        				   'id' => $id,
        				   'notify' => $notify,
        				   'emailsent' => $emailsent,
        				   'template' => $template,
        				   'des' => $des,
        				   'img_width' => $img_width,
        				   'img_height' => $img_height,
        				   'applet_name' => $applet_name,
        				   'user1' => $user1,
        				   'user2' => $user2,
        				   'user3' => $user3,
        				   'send_time' => $send_time,
        				   'time_created' => gmmktime(),
        				   'ip_address' => $ip_address,
        				   'sc_language' => $sc_language
        				   );
        $sql = "INSERT INTO $tbl_name (".implode(',', array_keys($card_data)).") VALUES (";
        $sql .= implode(', ', array_map(array($db, 'quoteSmart'), $card_data));
    	$sql .= ")";
        				   
        $db->query($sql);
        /*** plugin send_loop ***/
    
    	if ($emailsent == 1) {
            send_card_email(stripslashes($to[$i]), $to_email[$i], stripslashes($from), $from_email, $id);
            /*** plugin before_send_card_email ***/
        }// End if
    
    }//End for
    
    
    /*** plugin send_bottom ***/
    
    $tpl->set_var("ID", $id);
    $tpl->set_var("IMG_PATH", $img_path);
    $tpl->set_var("IMAGE", $image);
    $tpl->set_var("CAPTION", $caption);
    $tpl->set_var("BGCOLOR", $bgcolor);
    $tpl->set_var("TO", $to[0]);
    $tpl->set_var("TO_EMAIL", $to_email[0]);
    $tpl->set_var("FROM", $from);
    $tpl->set_var("FROM_EMAIL", $from_email);
    $tpl->set_var("FONTFACE", $fontface);
    $tpl->set_var("FONTCOLOR", $fontcolor);
    $tpl->set_var("MESSAGE", nl2br($message));
    $tpl->set_var("MUSIC", $music_path . $music);
    $tpl->set_var("IMG_WIDTH", $img_width);
    $tpl->set_var("IMG_HEIGHT", $img_height);
    $tpl->set_var("APPLET_NAME", $applet_name);
    $tpl->set_var("USER1", $user1);
    $tpl->set_var("USER2", $user2);
    $tpl->set_var("USER3", $user3);
    
    
    $tpl->parse("CONTENT", 'thankyou');
    $tpl->pparse("GLOBAL", "card");
    
    /*****************************************************************************/
    }elseif ( isset($view) && $view != 0 ){
    /*****************************************************************************/
    
    /*** plugin view_top ***/
    
    $query = "SELECT * FROM $tbl_name where id=" . $db->quoteSmart($id);
    $db->query($query);
    
    while($db->next_record()) {
        $image = $db->f("image");
        $caption = stripslashes($db->f("caption"));
        $bgcolor = $db->f("bgcolor");
        $to = stripslashes( $db->f("towho") ) ;
        $to_email = $db->f("to_email");
        $from = stripslashes($db->f("fromwho"));
        $from_email = $db->f("from_email");
        $message = makesafe(stripslashes($db->f("message")));
        $fontface = $db->f("fontface");
        $fontcolor = $db->f("fontcolor");
        $template = $db->f("template");
        $music = $db->f("music");
        $notify = $db->f("notify");
        if ($des != 'print') {
            $des = $db->f("des");
        }
        $img_width = $db->f("img_width");
        $img_height = $db->f("img_height");
        $applet_name = $db->f("applet_name");
        $user1 = stripslashes($db->f("user1"));
        $user2 = stripslashes($db->f("user2"));
        $user3 = stripslashes($db->f("user3"));
        $id = $db->f("id");
        $sc_language = $db->f("sc_language");
    }
    
    // Language handling code
    if ($separate_language_templates) {
        $tpl->set_root($tpl_path . '/' . $sc_language);
    }
    require_once(SENDCARD_FILE_PATH . "include/lang/" . $sc_language . "/sendcard.lang.php");
    if(isset($print)) {
    	$des = "print";
    	$sc_lang['view_message'] = $sc_lang['print_view_message'];
    }
    
    $tpl->set_file(array("message" => "$template.tpl", "card" => "$des.tpl"));
    /*** plugin view_after_set_file ***/
    
    // Check to see if there was a matching row in the database
    if($to != "") {
    $message = makeurl($message);
    if (!$sc_html_in_msg) {
    	$message = htmlspecialchars($message, ENT_QUOTES);
    }
    set_img_block($image);
    
    /*** plugin view_middle ***/
    
    $tpl->set_var("ID", $id);
    $tpl->set_var("IMG_PATH", $img_path);
    $tpl->set_var("IMAGE", $image);
    $tpl->set_var("CAPTION", $caption);
    $tpl->set_var("BGCOLOR", $bgcolor);
    $tpl->set_var("TO", $to);
    $tpl->set_var("TO_EMAIL", $to_email);
    $tpl->set_var("FROM", $from);
    $tpl->set_var("FROM_EMAIL", $from_email);
    $tpl->set_var("FONTFACE", $fontface);
    $tpl->set_var("FONTCOLOR", $fontcolor);
    $tpl->set_var("MESSAGE", nl2br($message));
    $tpl->set_var("MUSIC", $music_path . $music);
    $tpl->set_var("IMG_WIDTH", $img_width);
    $tpl->set_var("IMG_HEIGHT", $img_height);
    $tpl->set_var("APPLET_NAME", $applet_name);
    $tpl->set_var("USER1", $user1);
    $tpl->set_var("USER2", $user2);
    $tpl->set_var("USER3", $user3);
    $tpl->set_var("FOOTER", subst_placeholders(stripslashes($sc_lang['view_message'])));
    if ($music == "") {
    	$tpl->del_block("message", "music_block");
    }
    $tpl->parse("CONTENT", "message");
    $tpl->pparse("CONTENT", "card");
    
    
    // Check to see that the sender has asked to be notified, and that it isn't the sender viewing the card.
    if ($notify == 1 && $sender_view != "1"){
    	send_thankyou_email($from, $from_email, $to, $to_email);
    
        $query = "UPDATE $tbl_name SET notify='0' where id=" . $db->quoteSmart($id);
        $db->query($query);
    }
    
    $oldtime = gmmktime() - $kept;
    
    $clearout = "DELETE FROM $tbl_name where send_time < $oldtime";
    $db->query($clearout);
    /*** plugin view_bottom ***/
    
    
    } else {
    	// If no data was found, we print an apologetic message.
    	sendcard_show_message(stripslashes($sc_lang['no_card_msg']));
    } // End else
    
    /*****************************************************************************/
    }else{
    /*****************************************************************************/
    
    if (0 == count($_POST) && 0 == count($_GET)) {
    	// The form hasn't been submitted - someone's requested sendcard.php directly.
    	sendcard_show_message(stripslashes($sc_lang['no_card_msg']));
    	exit();
    }
    /*
     * This is where we generate the form to fill in the card.
     */
    if( !isset($num_recipients) ){
        $num_recipients = 1;
    }
    
    // Now we test to see if the image width and height have been specified. If not,
    // we get them from the image.  We can only get them from GIF, JPG, PNG or SWF files
    if(!isset($img_width) && !isset($img_height) ) {
    	$img_width = img_width($image);
    	$img_height = img_height($image);
    }
    
    /*** plugin form_top ***/
    
    #$tpl->set_file(array("form" => "$form.tpl", "card" => "$des.tpl", "img_tags" => "image.tpl"));
    $tpl->set_block("form", "recipient_block", "recipient");
    
    set_img_block($image);
    
    $tpl->set_var("APPLET_NAME", $applet_name);
    $tpl->set_var("IMG_PATH", $img_path);
    $tpl->set_var("IMAGE", $image);
    $tpl->set_var("CAPTION", $caption);
    $tpl->set_var("DES", $des);
    $tpl->set_var('FORM', $form);
    $tpl->set_var("TEMPLATE", $template);
    $tpl->set_var("IMG_WIDTH", $img_width);
    $tpl->set_var("IMG_HEIGHT", $img_height);
    
    for($i=0; $i < $num_recipients;$i++){
        $tpl->set_var("TO", $to[$i]);
        $tpl->set_var("TO_EMAIL", $to_email[$i]);
        $tpl->set_var("I", $i);
        $tpl->set_var("INVALIDTO_EMAIL", ($invalid_to_email && !is_valid_email($to_email[$i])) ? $sc_lang['email_error'] : "" );
        $tpl->parse("recipient", "recipient_block", true);
    }
    
    $tpl->set_var("FROM", $from);
    $tpl->set_var("FROM_EMAIL", $from_email);
    
    $use_adv_date = isset($use_adv_date) ? $use_adv_date : 1;
    if($use_adv_date) {
    	$tpl->set_var("DATE", DateSelector("Now"));
    } else {
    	$tpl->set_var("DATE", "");
    }
    $tpl->set_var("APPLET_NAME", $applet_name);
    $tpl->set_var("USER1", $user1);
    $tpl->set_var("USER2", $user2);
    $tpl->set_var("MESSAGE", $message);
    $tpl->set_var("NUM_RECIPIENTS", $num_recipients);
    
    if ( isset($invalid_from_email) ) {
    	$tpl->set_var("INVALIDFROM_EMAIL", $sc_lang['email_error']);
    }else{
    	$tpl->set_var("INVALIDFROM_EMAIL", "");
    }
    
    $preview_button .= buildHiddenInputs(array('image' => $image,
                                            'caption' => $caption,
                                            'num_recipients' => $num_recipients,
                                            'template' => $template == 'message' ? '' : $template,
                                            'des' => $des == 'card' ? '' : $des,
                                            'img_width' => $img_width,
                                            'img_height' => $img_height,
                                            'applet_name' => $applet_name,
                                            'user1' => $user1,
                                            'user2' => $user2,
                                            'user3' => $user3,
                                            'sc_language' => $sc_language
                                            ), '        ');
    
    /*** plugin form_bottom ***/
    
    $tpl->set_var("FOOTER", $preview_button);
    
    
    
    $tpl->parse("CONTENT", "form");
    $tpl->pparse("CONTENT", "card");
    
    }//End else
    /*** plugin end_file ***/
    switch(SENDCARD_MODE){
    	default:
    		break;
    }
    ?>
    It has a wrapper file it relies on called card.tpl. All it does is call the content like this:

    Code:
    {CONTENT}

    Does this help???

 

 

Similar Threads

  1. floating main wrapper
    By joe2009uk in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 16 May 2010, 08:19 PM
  2. Main Wrapper Border
    By mawson in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 11 May 2010, 01:39 PM
  3. Adding information to bottom of main page wrapper
    By Moebiusenterprises in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 20 Aug 2007, 11:53 PM
  4. Main Wrapper
    By oxicottin in forum General Questions
    Replies: 3
    Last Post: 14 May 2007, 07:06 PM
  5. Main Wrapper- want it to always open up to the bottom of page
    By fanmap81 in forum Templates, Stylesheets, Page Layout
    Replies: 11
    Last Post: 10 Nov 2006, 09:56 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg