zchannel rename to new_channel
This commit is contained in:
@@ -35,7 +35,7 @@ function manage_content(&$a) {
|
||||
}
|
||||
|
||||
$links = array(
|
||||
array( 'zchannel', t('Create a new channel'), t('New Channel'))
|
||||
array( 'new_channel', t('Create a new channel'), t('New Channel'))
|
||||
);
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
require_once('include/identity.php');
|
||||
|
||||
function zchannel_init(&$a) {
|
||||
function new_channel_init(&$a) {
|
||||
|
||||
$cmd = ((argc() > 1) ? argv(1) : '');
|
||||
|
||||
@@ -57,7 +57,7 @@ function zchannel_init(&$a) {
|
||||
}
|
||||
|
||||
|
||||
function zchannel_post(&$a) {
|
||||
function new_channel_post(&$a) {
|
||||
|
||||
$arr = $_POST;
|
||||
|
||||
@@ -90,7 +90,7 @@ function zchannel_post(&$a) {
|
||||
|
||||
|
||||
|
||||
function zchannel_content(&$a) {
|
||||
function new_channel_content(&$a) {
|
||||
|
||||
if(! get_account_id()) {
|
||||
notice( t('Permission denied.') . EOL);
|
||||
@@ -101,7 +101,7 @@ function zchannel_content(&$a) {
|
||||
$nickname = ((x($_REQUEST,'nickname')) ? $_REQUEST['nickname'] : "" );
|
||||
|
||||
|
||||
$o = replace_macros(get_markup_template('zchannel.tpl'), array(
|
||||
$o = replace_macros(get_markup_template('new_channel.tpl'), array(
|
||||
|
||||
'$title' => t('Add a Channel'),
|
||||
'$desc' => t('A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows.'),
|
||||
@@ -105,7 +105,7 @@ function register_post(&$a) {
|
||||
authenticate_success($result['account'],true,false,true);
|
||||
|
||||
if(! strlen($next_page = get_config('system','workflow_register_next')))
|
||||
$next_page = 'zchannel';
|
||||
$next_page = 'new_channel';
|
||||
|
||||
$_SESSION['workflow'] = true;
|
||||
|
||||
|
||||
@@ -16,6 +16,15 @@ function get_theme_config_file($theme){
|
||||
|
||||
function settings_init(&$a) {
|
||||
|
||||
|
||||
// default is channel settings in the absence of other arguments
|
||||
|
||||
if(argc() == 1) {
|
||||
$a->argc = 2;
|
||||
$a->argv[] = 'channel';
|
||||
}
|
||||
|
||||
|
||||
$tabs = array(
|
||||
array(
|
||||
'label' => t('Account settings'),
|
||||
@@ -83,10 +92,6 @@ function settings_post(&$a) {
|
||||
if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
|
||||
return;
|
||||
|
||||
if(argc() == 1) {
|
||||
$a->argc = 2;
|
||||
$a->argv[] = 'channel';
|
||||
}
|
||||
|
||||
if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
|
||||
notice( t('Permission denied.') . EOL);
|
||||
@@ -432,11 +437,6 @@ function settings_content(&$a) {
|
||||
$o = '';
|
||||
nav_set_selected('settings');
|
||||
|
||||
if(argc() == 1) {
|
||||
$a->argc = 2;
|
||||
$a->argv[] = 'channel';
|
||||
}
|
||||
|
||||
|
||||
if(! local_user()) {
|
||||
notice( t('Permission denied.') . EOL );
|
||||
|
||||
Reference in New Issue
Block a user