briefone.php

{
    Programs/news/Themes/$ThemeName/BriefOne/container.php : This is the container of the page briefone
    Programs/news/Themes/$ThemeName/BriefOne/news_row.php : This is the template of each row in the brief one page
    Programs/news/Themes/$ThemeName/BriefOne/no_news.php : This is the template of the message to show in case the language is not found or their is no news as this time
    
    $default_brief_one_callback : This variable must be global if we want to override the callback that will be called for each news row and return template
    this function must take 2 parameters and return template;
    ex : $default_brief_one_callback = function($news_record_set,$_template)
            {
                //if we want to apply some changes to fetched row without changing the template inside the callback we can return the current changed row
                //but in this case we must return an array with following structure ($_template,$row);
                return $_template;
            };
            
    
}


tags.php

{
    $news_tags_page_to_navigate_between : This variable must be global if we want to override the inner value of this variable that will tell us how many pages we want to view between first and last in pagination bar
    $news_tags_callback : This varialble must be global if we want to override the callback that will be called for each news row and return template
    this function must take 2 parameters and return template
    ex : $news_tags_callback = function($news_record_set,$_template)
        {
            return $_template;
        }
}