Jump to content

Что поменять? Страница с ipb в ips

Featured Replies

Posted
comment_153400
<?php
	if(!defined( 'IN_IPB' ))
	{
        		print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.";
        		exit();
	}

	class public_usercp_Main_Index extends ipsCommand 
	{
		public function doExecute( ipsRegistry $registry )
		{
			if ( !$this->memberData['g_mem_info'] )
	 		{
	 			$this->registry->output->showError( 'Для доступа к странице требуется авторизация', 10221, null, null, 403 );
			}

			if($this->request['id'])
			{
				if($this->memberData['member_id'] == $this->request['id'])
				{
					$show = 0;
					$user_id = $this->memberData['member_id'];
				}else{
					$show = 1;
					$user_id = $this->request['id'];
				}
			}else{
				$show = 0;
				$user_id = $this->memberData['member_id'];
			}

			$output .= '
				<link rel="stylesheet" href="public/boostrap/bootstrap.css" >

				<h3 class="maintitle">Название</h3>
				<div class="ipsBox_container">
			';

 				if($show)
				{
					$output .= '
						<div class="div_alert alert alert-warning" role="alert">
							<center>
								Что-то не так
							</center>
						</div>
					';
				}else{
					//	
				}

			$this->output =  $output;
			$this->registry->output->setTitle( "Заголовок" );
			$this->registry->output->addContent( $this->output );
			$this->registry->output->sendOutput(); 

		}
	}

?>

 

Здравствуйте! Подскажите, как переписать под ips community? Стоял на локалке ipb 3.4x, решил поставить ips. 

Это код со страниц ,которые создавались отдельно на ipb. Сейчас в менеджере страниц создал страницу, вставляю код, но не работает ничего. Много ошибок всеразличных.

Думаю, решение будет многим полезно, как и мне в целом.

Кстати, вопрос: где хранится php файл созданной страницы в менеджере файлов? 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.


Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.