Ejemplo n.º 1
0
     }
     $contents[] = array('text' => '<br />' . TEXT_CATEGORIES_NAME . $category_inputs_string);
     $contents[] = array('text' => '<br />' . TEXT_CATEGORIES_DESCRIPTION . $category_description_string);
     $contents[] = array('text' => '<br />' . TEXT_CATEGORIES_IMAGE . '<br />' . tep_draw_file_field('categories_image'));
     $contents[] = array('text' => '<br />' . TEXT_SORT_ORDER . '<br />' . tep_draw_input_field('sort_order', '', 'size="2"'));
     $contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_SAVE, 'disk', null, 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath)));
     break;
 case 'edit_category':
     $heading[] = array('text' => '<strong>' . TEXT_INFO_HEADING_EDIT_CATEGORY . '</strong>');
     $contents = array('form' => tep_draw_form('categories', FILENAME_CATEGORIES, 'action=update_category&cPath=' . $cPath, 'post', 'enctype="multipart/form-data"') . tep_draw_hidden_field('categories_id', $cInfo->categories_id));
     $contents[] = array('text' => TEXT_EDIT_INTRO);
     $category_inputs_string = $category_description_string = '';
     $languages = tep_get_languages();
     for ($i = 0, $n = sizeof($languages); $i < $n; $i++) {
         $category_inputs_string .= '<br />' . tep_image(tep_catalog_href_link(DIR_WS_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], '', 'SSL'), $languages[$i]['name']) . '&nbsp;' . tep_draw_input_field('categories_name[' . $languages[$i]['id'] . ']', tep_get_category_name($cInfo->categories_id, $languages[$i]['id']));
         $category_description_string .= '<br />' . tep_image(tep_catalog_href_link(DIR_WS_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], '', 'SSL'), $languages[$i]['name'], '', '', 'style="vertical-align: top;"') . '&nbsp;' . tep_draw_textarea_field('categories_description[' . $languages[$i]['id'] . ']', 'soft', '80', '10', tep_get_category_description($cInfo->categories_id, $languages[$i]['id']));
     }
     $contents[] = array('text' => '<br />' . TEXT_EDIT_CATEGORIES_NAME . $category_inputs_string);
     $contents[] = array('text' => '<br />' . TEXT_EDIT_CATEGORIES_DESCRIPTION . $category_description_string);
     $contents[] = array('text' => '<br />' . tep_image(HTTP_CATALOG_SERVER . DIR_WS_CATALOG_IMAGES . $cInfo->categories_image, $cInfo->categories_name) . '<br />' . DIR_WS_CATALOG_IMAGES . '<br /><strong>' . $cInfo->categories_image . '</strong>');
     $contents[] = array('text' => '<br />' . TEXT_EDIT_CATEGORIES_IMAGE . '<br />' . tep_draw_file_field('categories_image'));
     $contents[] = array('text' => '<br />' . TEXT_EDIT_SORT_ORDER . '<br />' . tep_draw_input_field('sort_order', $cInfo->sort_order, 'size="2"'));
     $contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_SAVE, 'disk', null, 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&cID=' . $cInfo->categories_id)));
     break;
 case 'delete_category':
     $heading[] = array('text' => '<strong>' . TEXT_INFO_HEADING_DELETE_CATEGORY . '</strong>');
     $contents = array('form' => tep_draw_form('categories', FILENAME_CATEGORIES, 'action=delete_category_confirm&cPath=' . $cPath) . tep_draw_hidden_field('categories_id', $cInfo->categories_id));
     $contents[] = array('text' => TEXT_DELETE_CATEGORY_INTRO);
     $contents[] = array('text' => '<br /><strong>' . $cInfo->categories_name . '</strong>');
     if ($cInfo->childs_count > 0) {
         $contents[] = array('text' => '<br />' . sprintf(TEXT_DELETE_WARNING_CHILDS, $cInfo->childs_count));
Ejemplo n.º 2
0
</td>
            	  <td></td>
          		</tr>
                <tr>
                  <td colspan="2" valign="top" class="main">&nbsp;</td>
                </tr>
                <tr>
                  <td colspan="2" valign="top" class="main">
                    <table width="100%" border="0" cellpadding="0" cellspacing="0">
              		  <tr>
                	    <td valign="top" class="main">
                		<?php 
        if (HTML_AREA_WYSIWYG_DISABLE == 'Enable') {
            echo tep_draw_textarea_field('categories_description[' . $languages[$i]['id'] . ']', '70', '15', isset($categories_description[$languages[$i]['id']]) ? $categories_description[$languages[$i]['id']] : tep_get_category_description($cInfo->categories_id, $languages[$i]['id']), 'id="category_description' . $languages[$i]['id'] . '" class="ckeditor"') . '</td>';
        } else {
            echo tep_draw_textarea_field('categories_description[' . $languages[$i]['id'] . ']', '70', '15', isset($categories_description[$languages[$i]['id']]) ? $categories_description[$languages[$i]['id']] : tep_get_category_description($cInfo->categories_id, $languages[$i]['id'])) . '</td>';
        }
        // EOF: CKeditor
        ?>
                        </td>
               		  </tr>
             		</table>
                  </td>
                </tr>
              </table>
            </div>       
            <?php 
    }
    ?>
            </div>
            </td>
Ejemplo n.º 3
0
    ?>
</td>
		  </tr>
<?php 
    for ($i = 0, $n = sizeof($languages); $i < $n; $i++) {
        ?>
          <tr valign="top">
            <td class="main" width="250"><?php 
        if ($i == 0) {
            echo TEXT_CATEGORY_DESCRIPTION;
        }
        ?>
</td>
            <td class="main"><?php 
        echo tep_image(DIR_WS_CATALOG_IMAGES . $languages[$i]['image'], $languages[$i]['name'], '', '', 'style="float: left; margin: 4px 4px 0px 0px;"');
        $field_value = isset($categories_description[$languages[$i]['id']]) ? $categories_description[$languages[$i]['id']] : tep_get_category_description($cInfo->categories_id, $languages[$i]['id']);
        $field_value = str_replace('\\\\"', '"', $field_value);
        $field_value = str_replace('\\"', '"', $field_value);
        $field_value = str_replace("\\\\'", "\\'", $field_value);
        $field_value = str_replace('="/', '="' . HTTP_SERVER . '/', $field_value);
        $editor = new editor('categories_description[' . $languages[$i]['id'] . ']');
        $editor->Value = $field_value;
        $editor->Height = '280';
        $editor->Create();
        ?>
</td>
          </tr>
<?php 
    }
    ?>
          <tr>