Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0

A public sub-category to the Playground - Come and test Kunena!

This is a special sub-category to demonstrate one of the many new features of K 2.0.

Users cannot create new topics in this category but they can reply to existing topics. Only forum moderators can create new topics in this category.

Question Testing this component

  • SANLiCmanager
  • SANLiCmanager's Avatar
  • New Member
  • New Member
More
13 years 9 months ago #129010 by SANLiCmanager
Replied by SANLiCmanager on topic Fairground as Play With Us! -test
I think it is much too expensive :(

Please Log in or Create an account to join the conversation.

More
13 years 9 months ago #129343 by m.twalker
So...this is a test. The comments on Joomla say, No editor. What is this that I am seeing? Looks like enough to me.
  • Just a few html tags
  • Is that the problem?

Please Log in or Create an account to join the conversation.

More
13 years 9 months ago #129811 by seanruk
:laugh: Msnfnvkfjjnvksdfvb

Please Log in or Create an account to join the conversation.

More
13 years 9 months ago #129996 by Oriander

Testing Team wrote: :) Testing this component


Unable to display Google Map.

Please Log in or Create an account to join the conversation.

More
13 years 9 months ago #129997 by Oriander
mega-mega forum
Unable to display Google Map.

Please Log in or Create an account to join the conversation.

More
13 years 9 months ago #129998 by Oriander
mega-mega-mega kunena :woohoo: :woohoo: :woohoo: :woohoo: :woohoo:
Code:
<?php class Blog extends CI_Controller { function index($page = null) { //echo 123; $data['title'] = "My Real Title"; $data['heading'] = "My Real Heading"; $this->load->model('Blogt'); $this->load->helper('form'); $this->load->helper('url'); //$this->load->library('javascript'); $this->load->helper('html'); $this->load->library('pagination'); $per_page = 5; $config['base_url'] = 'http://codeigniter.oriander.org/blog/index/'; $config['total_rows'] = $this->Blogt->get_users_count(); $config['per_page'] = $per_page; $config['num_links'] = 5; $config['first_link'] = 'начало'; $config['last_link'] = 'конец'; $this->pagination->initialize($config); $data['links'] = $this->pagination->create_links(); $data['query'] = $this->Blogt->get_users($page,$per_page); $this->load->library('table'); $this->table->set_heading('Айдишник', 'Имя', 'Возраст', 'Картинка', 'Изменить', 'Удалить'); //$this->table->add_row(array('Fred', 'Blue', 'Small')); foreach($data['query']->result() as $row) { $this->table->add_row($row->id, form_open('blog/update/').'<input type="hidden" value="'.$row->id.'" name="id"><input type="text" value="'.$row->name.'" name="name">', '<input type="text" value="'.$row->age.'" name="age">', '<img src="http://'.$_SERVER['HTTP_HOST'].'/uploads/'.$row->avatarka.'" />', '<input type="submit" name="update" value="Изменить">', '<input type="submit" name="delete" value="Удалить"></form>'); //Add each result row into table } $tmpl = array ( 'table_open' => '<table border="0" cellpadding="4" cellspacing="0" style="border: 10px solid orange;">', 'heading_row_start' => '<tr style="border: 1px black dotted; background-color: lightgreen">', 'heading_row_end' => '</tr>', 'heading_cell_start' => '<th style="border: 1px white dotted; color:white; background-color: orange;">', 'heading_cell_end' => '</th>', 'row_start' => '<tr style="color:orange; font-weight:bold; background-color: white;">', 'row_end' => '</tr>', 'cell_start' => '<td>', 'cell_end' => '</td>', 'row_alt_start' => '<tr style="color:orange; background-color: #F8F8F8; font-weight:bold">', 'row_alt_end' => '</tr>', 'cell_alt_start' => '<td>', 'cell_alt_end' => '</td>', 'table_close' => '</table>' ); $this->table->set_template($tmpl); $this->table->set_caption('<b>Юзвери</b>'); $data['table'] = $this->table->generate(); $this->load->view('blogview', $data); } function update() { //echo $_POST['name']; $this->load->database(); $this->load->helper('url'); $this->load->library('form_validation'); if (isset($_POST['delete'])) { $this->db->where('id', $_POST['id']); $this->db->delete('users'); redirect('/blog/'); } $this->form_validation->set_rules('name', 'Имя', 'trim|required|max_length[20]|xss_clean|htmlspecialchars|alpha'); $this->form_validation->set_rules('age', 'Возраст', 'trim|required|max_length[3]|numeric'); $this->form_validation->set_error_delimiters('<span class="error">', '</span>'); if ($this->form_validation->run() == FALSE) { //redirect('/blog/'); $this->index(); } else { $this->db->where('id', $_POST['id']); $this->db->update('users', array('name' => $_POST['name'], 'age' => $_POST['age'])); redirect('/blog/'); } } function insert_user() { $this->load->database(); $this->load->helper('url'); $this->load->library('form_validation'); $config['upload_path'] = './uploads/'; $config['allowed_types'] = 'gif|jpg|png'; $config['max_size'] = '2000'; $config['max_width'] = '1024'; $config['max_height'] = '768'; $this->load->library('upload', $config); $this->upload->do_upload("userfile"); $imginf = $this->upload->data(); $config['image_library'] = 'gd2'; // выбираем библиотеку $config['source_image'] = $imginf['full_path']; //$config['create_thumb'] = TRUE; // ставим флаг создания эскиза $config['maintain_ratio'] = TRUE; // сохранять пропорции $config['width'] = 100; // и задаем размеры $config['height'] = 100; $this->load->library('image_lib', $config); // загружаем библиотеку $this->image_lib->resize(); // и вызываем функцию //unlink($imginf['full_path']); $this->form_validation->set_rules('name', 'Имя', 'trim|required|max_length[20]|xss_clean|htmlspecialchars|alpha'); $this->form_validation->set_rules('age', 'Возраст', 'trim|required|max_length[3]|numeric'); $this->form_validation->set_error_delimiters('<span class="error">', '</span>'); if ($this->form_validation->run() == FALSE) { //redirect('/blog/'); $this->index(); } else { $this->db->insert('users', array('name' => $_POST['name'], 'age' => $_POST['age'], 'avatarka' => $imginf['file_name'])); redirect('/blog/'); } } function comments() { echo 'Взгляни сюда!'; } function shoes($sandals, $id) { echo $sandals; echo $id; } } ?>

Please Log in or Create an account to join the conversation.

Time to create page: 0.231 seconds